blob: 52ac93080ce8e58eb2dd64ed9d49bc89cbc532b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Page with forms</title>
</head>
<body>
<form action="#">
<p>
Text: <input type="text" name="text" value="" />
</p>
<p>
Search: <input type="search" />
</p>
<p>
Radio:<br/>
Maryland<input type="radio" name="group1" value="Maryland"/><br/>
California<input type="radio" name="group1" value="California"/>
</p>
<p>
<select>
<option value="Maryland">Maryland</option>
<option value="California">California</option>
</select>
</p>
<p>
Button: <input type="button" value="button"/>
</p>
<p>
Submit: <input type="submit" />
</p>
</form>
</body>
</html>
|