-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercise 1.1.html
38 lines (34 loc) · 1.71 KB
/
Exercise 1.1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KWEB Survey Page</title>
</head>
<body>
<h2>Kweb Survey Page</h2>
<img src ="https://i.imgur.com/hSSFVSw.png" alt ="KWEB Logo" width =240><br>
<a href = "https://kwebofficial.com" title = "Kweb Homepage" target = "_blank">KWEB Homepage</a>
<h3>1.Write your name.</h3>
<input type = "text" name ="username">
<h3>2.Write your student number.</h3>
<input type = "text" name ="student-number">
<h3>3. Select your member level.</h3>
<label><input type = "radio" name = "label" value = "admin">Admin</label>
<label><input type = "radio" name = "label" value = "intern">Intern</label>
<label><input type = "radio" name = "label" value = "qualified">Qualified</label>
<h3>4. Select all fields your are interested in.</h3>
<label><input type = "checkbox" name = "field" value = "front">Front-end</label>
<label><input type = "checkbox" name = "field" value = "back">Back-end</label>
<label><input type = "checkbox" name = "field" value = "web-crawling">Web crawling</label>
<label><input type = "checkbox" name = "field" value = "web-security">Web security</label>
<label>
<input type = "checkbox" name = "field" value = "extra">Etcetera
<input type = "text" name = "extra-field">
</label>
<h3>5. Give us your overall evaluation and feedback about the previous study.</h3>
<textarea cols ="98" rows ="20" name = "feedback"></textarea><br>
<button type = "submit">Submit your answers</button>
</body>
</html>