-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
85 lines (85 loc) · 2.42 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1 id="title">survey-form</h1>
<p id="description">it is a survey-form that made by using html and css</p>
</head>
<link rel="stylesheet" href="styles.css">
<body>
<div class="container">
<form id="survey-form">
<div class="labels">
<label id="name-label">name</label><input id="name" type="text" placeholder="Enter your name" required><br/>
<label id="email-label">email</label><input id="email" type="email" placeholder="Enter your email" required><br/>
<label id="number-label">number</label><input id="number" min="20" max="66" type="number" placeholder="Age"required>
</div><br/>
<select id="dropdown">
<option>web development </option>
<option>ux/ui</option>
<option>digital markiting </option>
</select>
<div class="form-group">
<p>Would you recommend freeCodeCamp to a friend?</p>
<label>Definitely</label>
<br/>
<input
name="user-recommend"
value="definitely"
type="radio"
class="input-radio"
checked>
<label>Maybe</label><br/>
<input
name="user-recommend"
value="maybe"
type="radio"
class="input-radio">
<label>Not sure</label><br/>
<input
name="user-recommend"
value="not-sure"
type="radio"
class="input-radio">
<label>sure</label>
<br/>
</div>
<br/>
<div class="checkbox">
<input
name="checkbox1"
value="multiple"
type="checkbox"
class="checkbox">
<label>Front-end Projects</label>
<br/>
<input
name="checkbox2"
value="back-end"
type="checkbox"
class="checkbox">
<label>back-end</label>
<br/>
<input
name="checkbox3"
value="ux/ui"
type="checkbox"
class="checkbox">
<label>ux/ui</label>
</div>
<div class="coment">
<p>Any comments or suggestions?
</p>
<textarea
id="comments"
lass="textarea"
name="comment"
placeholder="Enter your comment here...">
</textarea>
</div><br/>
<button type="submit" id="submit" class="submit-button">submit</button>
</form>
</div>
</body>
</html>