forked from JulioPrieto06/registrationform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="css/styles.css">
<head>
<title>Form Test</title>
</head>
<body>
<header>
<h1 id="title">
Survey Form Test 2.0
</h1>
<p id="description">This is my first certification </p>
</header>
<div class="form">
<form id="survey-form">
<fieldset>
<label id="name-label">Name<input type="text" id="name" placeholder="your name goes here" required/></label>
<label id="email-label">Email<input type="email" id="email" placeholder="your email " required/></label>
<label id="number-label">Age<input type="number" id="number" min="13" max="99" placeholder="your age please" /></label>
</fieldset>
<fieldset>
<label>Have you being in Europe before?</label>
<select id="dropdown">
<option>chose one</option>
<option>option 1</option>
<option>option 2</option>
</select>
</fieldset>
<fieldset>
<label>Do you like our content?</label>
<label><input type="radio" name="one" value="one" class="inline"/>yes</label>
<label><input type="radio" name="one" value="two" class="inline"/>no</label>
</fieldset>
<fieldset>
<label>What is your favorite color?</label>
<label><input type="checkbox" value="one" class="inline"/>Blue </label>
<label><input type="checkbox" value="two" class="inline"/>Red</label>
<label><input type="checkbox" value="three" class="inline"/>Green</label>
<label><input type="checkbox" value="four" class="inline"/>Yellow</label>
</fieldset>
<fieldset>
<label>Do you have a aditional comments</label>
<textarea rows="10" cols="30" placeholder="Describe your experience here"></textarea>
</fieldset><input type="submit" id="submit" />
</form>
</div>
</body>
</html>