-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (59 loc) · 2.32 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
<!DOCTYPE html>
<body>
<head>
<title>Webartly | FreeCodeCamp Project : Survey Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<h1 id="title">Survey Form</h1>
<p id="description">Do you want to start in web development ?<br> Please, fill the form.
</p>
<form action="" id="survey-form">
<div>
<label for="name" id="name-label">Name</label>
<input type="text" id="name" required placeholder="" class="name fas">
</div>
<div>
<label for="email" id="email-label">E-mail</label>
<input type="email" id="email" required placeholder="" class="email fas">
</div>
<div>
<label for="number" id="number-label">Age</label>
<input type="number" id="number" min="0" max="10" placeholder="Select a number">
</div>
<div>
<label for="dropdown">Select your path :</label>
<select id="dropdown" >
<option value="Front-end" class="option">Front-end</option>
<option value="Back-end" class="option">Back-end</option>
<option value="Full-Stack" class="option">Full-Stack </option>
</select>
</div>
<div class="label">You want to learn :
<div class="divs">
<input type="radio" name="learn" value="online"><label for="learn1" > Online</label>
<input type="radio" name="learn" value="onPerson"><label for="learn2"> On person</label>
<input type="radio" name="learn" value="both"><label for="learn3"> Both</label>
</div>
</div>
<div class="gender-custom">
Select your gender :
<div class="divs">
<input type="checkbox" value="woman" id="gender1"><label for="gender1">Woman</label>
<input type="checkbox" value="man" id="gender2" ><label for="gender2">Man</label>
</div>
</div>
<div>
<label for="comments" class="comments">Comments : </label>
</div>
<div>
<textarea name="comments" id="comments" cols="25" rows="5" placeholder=" Please add your comments"></textarea>
</div>
<div>
<button id="submit"><i class="fas fa-paper-plane"></i> Submit</button>
</div>
</form>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>