13 lines
316 B
HTML
13 lines
316 B
HTML
<html>
|
|
<head>
|
|
<title>pedantic example</title>
|
|
<style>h1 {color : #ff0000;}</style>
|
|
<script>var x=1;</script>
|
|
</head>
|
|
<body>
|
|
Here is a disabled button:
|
|
<button name="ok" disabled="disabled">button</button><br/>
|
|
Here is a text input: <input name="email" type="text"/>
|
|
</body>
|
|
</html>
|