-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
72 lines (60 loc) · 1.82 KB
/
form.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title></title>
</head>
<body>
<form>
<fieldset>
<legend>Your Details</legend>
<div class="row">
<label for="name">Name:</label>
<input id="name" class="text-field" type="text" name="name" placeholder="Please Write Your Complete Name"></input>
</div>
<div class="row">
<label for="email">Email:</label>
<input id="email" class="text-field" type="email" name="email"></input>
</div>
</fieldset>
<fieldset>
<legend>Your Review</legend>
<div class="row">
<span>How did you hear about us?</span>
<select name="sources">
<option value="google">Google</option>
<option value="facebook" selected>Facebook</option>
<option value="tsismis">Tsismis</option>
</select>
</div>
<div class="row">
<div>Would you visit us again?</div>
<label for:"yes"><input id="yes" type="radio" name="answer" value="yes" checked>Yes</label>
<label for:"no"><input id="no" type="radio" name="answer" value="no">No</label>
<label for:"maybe"><input id="maybe" type="radio" name="answer" value="maybe">Maybe</label>
</div>
<div class="row">
<label for="comment">Comments:</label>
<br>
<textarea id="comment" name="comment" rows="5" cols="40" required></textarea>
</div>
<div class="row">
<input id="signup" type="checkbox" name="answer" value="yes"></input>
<label for="signup">Sign me up for email updates.</label>
</div>
<div class="row">
<button>Submit Review</button>
</div>
</fieldset>
<form>
<hr>
<nav id="nav">
<ul>
<li><a href="register.html">Register Now</a></li>
<li><a href="index.html">Index</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</body>
</html>