-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
47 lines (45 loc) · 1.7 KB
/
forms.html
File metadata and controls
47 lines (45 loc) · 1.7 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="GET" action="https://request-inspector.glitch.me/">
<section>
<label for="Email">Email</label>
<input id="Email" name="username" type="text" placeholder="Email">
<br>
<br>
<label for="password"> Password</label>
<input id="password" name="password" type="password" placeholder="Password">
<!--<input type="submit">-->
</section>
<section>
<br>
<p>Please give a short bio of who you are!! </p>
<label for="bio"></label>
<textarea id="bio" name="bio" placeholder="My bio">
</textarea>
</section>
<section>
<p>How did you hear about Us</p>
<label for="Where_are_we_Wasting_money"></label>
A <input type="radio" name="How_you_heard_about_us2" value="A Billboard" id="Where_are_we_Wasting_money">Billboard <br>
B <input type="radio" name="How_you_heard_about_us2" value="B internet" >Internet advertisement<br>
C <input type="radio" name="How_you_heard_about_us2" value="C Radio">Radio Advertisement<br>
D <input type="radio" name="How_you_heard_about_us1" value="D Other">Other<br>
<br>
<p>What is the web browser you are using</p>
<label for="Your_Web"></label>
<select name="Your_Web" id="Your_Web">
<option value="Chrome" >Chrome </option>
<option value="FireFox" >FireFox </option>
<option value="Safari" >Safari</option>
<option value="Edge" >Internet Explorer</option>
</select>
</section>
<button type="Submit">Submit</button>
</form>
</body>
</html>