-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms_exercise.html
More file actions
56 lines (41 loc) · 1.59 KB
/
Copy pathforms_exercise.html
File metadata and controls
56 lines (41 loc) · 1.59 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
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
<link rel="stylesheet" href="forms.css">
</head>
<body>
<form action="https://requestb.in/pdkbd7pd" method="POST">
<!--In line styling-->
<h1>Veridian Dynamics</h1>
<label for="email">
Email
<input type="text" id="email" placeholder="example@domain.com" name="email" required>
</label>
<label for="password">
password
<input type="password" id="password" placeholder="5 chars at least" name="password">
</label>
<label for="bio"> Bio:
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Talk about yourself">
</textarea>
</label>
<p>How did you hear about us</p>
<input type="radio" name="feedback" id="b" value="billboard">
<label for="b">Billboard</label>
<input type="radio" id="r" name="feedback" value="radio advertisement"><label for="r">radio advertisement</label>
<input type="radio" id="i" name="feedback" value="internet advertisement"><label for="i">internet advertisement</label>
<input type="radio" id="o" name="feedback" value="other"><label for="o">others</label>
<label for="browser">Fav Browser</label>
<select name="browser" id="browser">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="opera">Opera</option>
</select>
<input type="submit" value="send feedback">
<!-- This is another way to submit-->
<!--<button>Send feedback</button>-->
</form>
</body>
</html>