This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.html
137 lines (131 loc) · 4.61 KB
/
html.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html lang="en">
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css.css">
<title>Bjørnar's survey form</title>
</head>
<body>
<header>
<h1 id="title">
Bjørnar's survery form
</h1>
<p id="description">
Thank you for taking the time to help me improve as a programmer
</p>
</header>
<main>
<form id="survey-form">
<label
id="name-label"
for="name">
Name
</label>
<input
id="name"
type="text"
name="name"
placeholder="Enter your name"
required>
<label
id="email-label"
for="email">
E-mail
</label>
<input
id="email"
type="email"
name="email"
placeholder="Enter your email"
required>
<label
id="number-label"
for="number">
Age
</label>
<input
id="number"
type="number"
name="age"
min="10"
max="99"
placeholder="Age">
<p>
Why do you want to contact me?
</p>
<select
id="dropdown"
name="role">
<option disabled selected value>
Click here to select current reason
</option>
<option value="colloboration">
Colloboration
</option>
<option value="ask a question">
Ask a question
</option>
<option value="help">
Get help with HTML/CSS
</option>
</select>
<p>
What do you think about this survey?
</p>
<label id="radio">
<input
name="user-recommend"
value="very-good"
type="radio"
checked>
Very good!
</label>
<label id="radio">
<input
name="user-recommend"
value="average"
type="radio"
checked>
Just average!
</label>
<label id="radio">
<input
name="user-recommend"
value="not-very-good"
type="radio"
checked>
Not very good!
</label>
<p>
What should I improve next time I make a survey?
<span>(check all that apply)</span>
</p>
<label id="choices">
<input
name="prefer"
value="more-choices"
type="checkbox">
More choices
</label>
<label id="choices">
<input
name="prefer"
value="less-choices"
type="checkbox">
Less choices
</label>
<label id="choices">
<input
name="prefer"
value="different-set-up"
type="checkbox">
Different set up
</label>
<p>Do you have any comments or suggestions?</p>
<textarea id="textarea" name="comment" placeholder="Enter your comment or suggestion here..."></textarea>
<button type="submit" id="submit">Submit</button>
</form>
<!--Ble akkurat ferdig med yser story #13-->
</main>
</body>
</html>