-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
27 lines (23 loc) · 738 Bytes
/
form.html
File metadata and controls
27 lines (23 loc) · 738 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Form page!</title>
</head>
<body>
<form action="submit.php" method="get">
Name:<br>
<input type="text" name="name" ><br>
Age:<br>
<input type="text" name="age"><br>
What type of computer do you own?<br>
<input type="radio" name="computer" value="mac" checked>Macintosh</input><br>
<input type="radio" name="computer" value="pc">PC</input><br>
<select name="state">
<option value="California">California</option>
<option value="New York" >New York</option>
<option value="Nevada">Nevada</option>
</select>
<input type="submit" >
</form>
</body>
</html>