-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
32 lines (31 loc) · 1.23 KB
/
forms.html
File metadata and controls
32 lines (31 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
<h1>Register with us!</h1>
</head>
<body>
<form method="POST" action="http:elformo">
<input type="text" name="email" placeholder="enter your email address"><br>
<input type="password" name="password" placeholder="password"><br>
<br>
<textarea id="body-text" name="Bio" cols="30" rows="10">Tell me about yourself...</textarea><br>
<br>
<input name="How did you hear about us?" value="true" type="checkbox" checked>How did you hear about us?<br>
<input type="radio" name="billboard" value="billboard">Billboard<br>
<input type="radio" name="radio ad" value="radio ad">Radio AD<br>
<input type="radio" name="internet ad" value="internet ad">Internet AD<br>
<input type="radio" name="other" value="other">Other<br>
<br>
What web browser are you using?<br><select name="web browse">What web browser are you using?
<option value="blank">Choose browser</option>
<option value="Safari">Safari</option>
<option value="Chrome">Chrome</option>
<option value="Duck Duck Go">Duck Duck Go</option>
</select><br>
<br>
<button type="submit">Submit the form</button>
</form>
</body>
</html>