-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-simple.html
73 lines (73 loc) · 2.49 KB
/
form-simple.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
<main>
<head>
<link rel="stylesheet" href="./styles/form-sty.css">
</head>
<body>
<header>
<title>FreeCodeCamp Survey Challenge</title>
</header>
<h1 id="title">Programming Experience Survey within FCC universe</h1>
<p id="description">In order to understand how the program is working right now, also to know more details about how do you feel while taking the courses, we will ask you a couple questions. Feel free to add any suggestions and comments you want.</p>
<div id="wrapper">
<form id="survey-form">
<div>
<label id="name-label" for="name">Full name:</label>
<input type="text" id="name" name="name" placeholder="Enter your full name">
</div>
<div>
<label id="email-label" for="e-mail">E-mail:</label>
<input type="email" id="e-mail" name="email">
<!--OJO falta validar e-mail -->
</div>
<div>
<label for="number" id="number-label">Age:</label>
<input type="number" id="number" name="age" min="18" max="99" placeholder="Age">
</div>
<div>
<label for="dropdown" id="dropdown-label">Which Internet browser you use:</label>
<input list="dropdown" name="isp" placeholder="Click to expand">
<datalist id="dropdown">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
</div>
<div>
<p>What was your preferred area?(Select all that apply)</p>
<label for="prefer"
><input
name="prefer"
value="front-end-projects"
type="checkbox"
class="input-checkbox"
/>Front-end Projects</label
>
<label for="prefer"
><input
name="prefer"
value="front-end-projects"
type="checkbox"
class="input-checkbox"
/>Back-end Projects</label
>
</div>
<div>
<p>Comments or suggestions?</p>
<textarea
id="comments"
class="input-textarea"
name="comment"
placeholder="Enter your comment here..."
></textarea>
</div>
<div>
<button type="submit" id="submit" class="submit-button">
Submit
</button>
</div>
</form>
</div>
</body>
</main>