-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseventh_html.html
More file actions
32 lines (31 loc) · 1.11 KB
/
seventh_html.html
File metadata and controls
32 lines (31 loc) · 1.11 KB
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
<html>
<head>
<title>Forms</title>
</head>
<body>
<h2>Please fill out this form</h2>
<br />
<form action="http://www.example.com/login.php">
<p>Username:
<input type="text" name="username" maxlength="30"/>
</p>
<p>Password:
<input type="Password" name="Password" maxlength="30"/>
</p>
</form>
<p>What do you think of this website?</p>
<textarea name="comments" cols="50" rows="4">This is the best!</textarea>
<p>Which is your favorite website?</p>
<input type="radio" name="website" value="this" checked="checked"/>this
<input type="radio" name="website" value="this"/> this
<input type="radio" name="website" value="this"/> this
<input type="checkbox" name="website" value="this"/> this
<input type="checkbox" name="website" value="this"/> this
<select name="website">
<option value="this">this</option>
<option value="this">this</option>
<option value="this">this</option>
</select>
<input type="submit" name="good?" value="Tell me the good news!" />
</body>
</html>