-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
89 lines (85 loc) · 4.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programmers Survey Form</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="heading">
<h1 id=title>Programmers Voice! Tell us your choice!</h1>
<p id="description">We love to know about which technology and tools software engineers are using world wide! Each and every Developers opinions are very precious to us!</p>
</div>
<div id="main">
<form id="survey-form">
<div id="input-fields">
<label id="name-label"><b>Name:</b></label>
<input id="name" type="name" name="name" class="form" required placeholder="Full Name"><br>
<br>
<label id="email-label"><b>Email:</b></label>
<input id="email" type="email" name="email" class="form" required placeholder="example@mail.com"><br>
<br>
<label id="number-label"><b>Age:</b></label>
<input id="number" type="number" name="number" class="form" min="5" max="99" placeholder="12+">
</div>
<div id="dropdown-div"><br>
<label id="dropdown-label"><strong>Programming language you are expert at: </strong></label><br>
<select id="dropdown" name="code-lang" class="form">
<option value="C">C (Programming Language)</option>
<option value="Python">Python</option>
<option value="C#">C#</option>
<option value="php">PHP</option>
<option value="Js">Java Script</option>
<option value="Go">Go (Programming Language)</option>
<option value="ruby">Ruby on rails</option>
<option value="C++">C++</option>
<option value="Java">Java</option>
</select>
</div>
<div id="button-area">
<br>
<label id="job-label"><b>Employment Status:</b></label><br>
<input type="radio" class="radio-inline" name="gender" value="employed" checked> Full-time job holder.(Employed)<br>
<input type="radio" class="radio-inline" name="gender" value="freelancer"> Part-time job holder.(Freelancer)<br>
<input type="radio" class="radio-inline" name="gender" value="applier"> Looking for a job.(Applier)<br>
<input type="radio" class="radio-inline" name="gender" value="unemployed"> I am a student.(Unemployed)
</div>
<div id="button-area"><br>
<label id="os-label"><b>Operating system experience: </b></label><br>
<input type="checkbox" name="os1" value="windows" checked> I am experienced with Windows-OS<br>
<input type="checkbox" name="os2" value="linux"> I am experienced with Linux-OS<br>
<input type="checkbox" name="0s3" value="mac"> I am experienced with Mac-OS<br>
</div>
<div id="dropdown"><br><br>
<label id="dropdown-label"><strong>Programming language you wanna be expert: </strong></label><br>
<select id="dropdown" name="code-lang" class="form"><br><br>
<option value="C">C (Programming Language)</option>
<option value="Python">Python</option>
<option value="C#">C#</option>
<option value="php">PHP</option>
<option value="Js">Java Script</option>
<option value="Go">Go (Programming Language)</option>
<option value="ruby">Ruby on rails</option>
<option value="C++">C++</option>
<option value="Java">Java</option>
</select>
</div>
<div id="button-area"><br><br>
<label id="os-label"><b>Latest technology experience:</b></label><br>
<input type="checkbox" name="tech1" value="flutter"> Flutter UI<br>
<input type="checkbox" name="tech2" value="nodejs"> Node.js<br>
<input type="checkbox" name="tech3" value="tnflow"> Tensorflow<br>
<input type="checkbox" name="tech3" value="git"> Github<br>
<input type="checkbox" name="tech3" value="devops"> Dev-Ops<br>
</div>
<div id="ending"><br><br>
<label id="comments-label">Do you have any suggestion about this survey?</label><br>
<textarea style= height:120px;" class="form" placeholder="Please feel free to write a review..."></textarea><br><br>
<input id="submit" type="submit" class="form">
</div>
</form>
</div>
</body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</html>