-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (83 loc) · 2.3 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
86
87
88
<!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>it is a survey-form that made by using html and css</p>
</head>
<link rel="stylesheet" href="index.css">
<body>
<div class="container">
<form id="survey-form">
<label id="name-label">name</label><input id="name" type="text" placeholder="Enter your name" required>
<label id="email-label">email</label><input id="email" type="email" placeholder="Enter your email" required>
<label id="number-label">number</label><input id="number-label" type="number" placeholder="Age"
required>
<select id="dropdown">
<option></option>
<option>web development </option>
<option>ux/ui</option>
<option>digital markiting </option>
</select>
<div><label>
<input
name="radio-botton"
value="definitely"
type="radio"
class="radio"
checked
/>Definitely</label>
<label>
<label>
<input
name="radio-b"
value="maybe"
type="radio"
class="radio"
>
</label>
<label>
<input
name="radio_b"
value="sure"
type="radio"
class="radio"
>
</label>
</div>
<label><input
name="checkbox1"
value="multiple"
type="checkbox"
class="checkbox"
>Front-end Projects</label>
<label>
<input
name="checkbox2"
value="back-end"
type="checkbox"
class="checkbox"
>back-end</label>
<label>
<input
name="checkbox3"
value="ux/ui"
type="checkbox"
class="checkbox"
>ux/ui</label>
<p>Any comments or suggestions?</p>
<textarea
id="comments"
class="textarea"
name="comment"
placeholder="Enter your comment here..."
></textarea>
<hr>
<button type="submit" id="submit" class="submit-button">
Submit
</button>
</form>
</div>
</body>
</html>