-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
55 lines (53 loc) · 2.08 KB
/
forms.html
File metadata and controls
55 lines (53 loc) · 2.08 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
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Register With Us</title>
</head>
<body>
<form method ="GET" action="https://request-inspector.glitch.me/">
<label for= "email">Email</label>
<input id="email" name ="email" type="text" placeholder="example@email.com">
<br>
<label for ="password">Password</label>
<input id="password" name="password" type="password" placeholder="Enter Password">
<br>
<section>
<label for ="bio">Bio</label>
<br>
<textarea id="bio" name="bio" cols="30" row="10" placeholder="Write a short description about yourself!"></textarea>
</section>
<br>
<section>
<label>How did you hear about us?</label>
<br>
<label for="billboard">Billboard</label>
<input type="radio" id="billboard" name="billboard" value="billboard" >
<br>
<label for="radio">Radio advertisement</label>
<input type="radio" id="radio" name="radio" value="radio" >
<br>
<label for="internet">Internet advertisement</label>
<input type="radio" id="internet" name="internet?" value="internet" >
<br>
<label for="other">Other</label>
<input type="radio" id="other" name="other" value="other" >
</section>
<section>
<p>What kind of browser are you using?</p>
<select name ="Browser">
<option value="chrome">Google Chrome</option>
<option value="firefox">Firefox </option>
<option value="internet explorer">Internet Explorer</option>
<option value ="other">Other</option>
</select>
</section>
<br>
<input type="Submit" value="Submit">
</form>
</header>
</body>
</html>