-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
32 lines (32 loc) · 1.15 KB
/
forms.html
File metadata and controls
32 lines (32 loc) · 1.15 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>
</head>
<body>
<header>
<form method="GET" action="https://request-inspector.glitch.me/">
<input type="text" name="email" placeholder="Enter your email address">
<input type="password" name="password" placeholder="Password">
</header>
<article><textarea name="Bio"></textarea></article>
<article>
<p>How did you hear about us? </p>
Billboards <input type="radio" name="How did you hear about us?" value="Billboards"><br>
Radio Advertisement <input type="radio" name="How did you hear about us?" value="Radio Advertisement"><br>
Internet Advertisement <input type="radio" name="How did you hear about us?" value="Internet Advertisement"><br>
Other <input type="radio" name="How did you hear about us?" value="Other"><br>
</article>
<footer>
<p>What browser are you using?</p>
<select name="What browser are you using?">
<option value="chrome">Chrome</option>
<option value="safari">Safari</option>
<option value="edge">Edge</option>
</select>
</footer>
<br>
<button type="submit">Submit the form</button>
</body>
</html>