-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (139 loc) · 6.12 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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>Survey Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div class="container">
<header id="header">
<h1 id="title">Faculty of Technology Student Survey</h1>
<p id="description">Please fill out our student/alumni survey including details about your current/previous course, career status and aspirations for the future.</p>
</header>
<main>
<form id="survey-form">
<fieldset class="one">
<legend>Contact Details:</legend>
<label for="name" id="name-label">
Full Name:
<input type="text" id="name" placeholder="Enter Your Full Name" required>
</label>
<label for="email" id="email-label">
Email Address:
<input type="email" id="email" placeholder="Enter Your Email Address" required>
</label>
</fieldset>
<fieldset class="two">
<legend>Course Details</legend>
<label>
Course Type:
<select name="course-type">
<option value="Bachelors">Bachelors</option>
<option value="Masters">Masters</option>
<option value="PHD">PHD</option>
</select>
</label>
<label for="dropdown">
Course Title:
<select name="course-title" id="dropdown">
<option value="">(Select Course)</option>
<option value="aerospace">Aerospace Engineering</option>
<option value="electrical">Electrical Engineering</option>
<option value="computer">Computer Engineering</option>
<option value="civil">Civil Engineering</option>
<option value="mechanaical">Mechanical Engineering</option>
<option value="mechatronic">Mechatronic Engineering</option>
<option value="automotive">Automotive Engneering</option>
<option value="naval">Naval Engineering</option>
</select>
</label>
<label for="number" id="number-label">
Year of Study:
<input type="number" min="1" max="4" id="number" placeholder="No.">
</label>
</fieldset>
<fieldset class="three">
<legend>Employment status</legend>
<label>
<input type="radio" name="employment-status" value="unemployed">
Unemployed
</label>
<label>
<input type="radio" name="employment-status" value="further-study">
Further Study
</label>
<label>
<input type="radio" name="employment-status" value="employed">
Employed
</label>
</fieldset>
<fieldset class="four">
<legend>Industry</legend>
<label>
<input type="checkbox" value="commercial">
Commercial
</label>
<label>
<input type="checkbox" value="industrial">
Industrial
</label>
<label>
<input type="checkbox" value="military">
Miltary
</label>
<label>
<input type="checkbox" value="research">
Research & Development
</label>
</fieldset>
<fieldset class="five">
<legend>Employement Locations</legend>
<label>
<input type="checkbox" value="europe">
Europe
</label>
<label>
<input type="checkbox" value="asia">
Asia
</label>
<label>
<input type="checkbox" value="north-america">
North America
</label>
<label>
<input type="checkbox" value="south-america">
South America
</label>
<label>
<input type="checkbox" value="australia">
Australia
</label>
</fieldset>
<fieldset class="five">
<legend>Summary of Career</legend>
<textarea name="comments" id="comments" placeholder="Enter Text"></textarea>
</fieldset>
<button id="submit">Submit Form</button>
</form>
</main>
<footer id="footer">
<div id="disclaimer-container">
<p>Disclaimer:</p>
<p id="disclaimer-text">This a practice web developement project and not a real university survey form.</p>
</div>
<div id="phone-number-container">
<p>Phone Number: </p>
<p>###########</p>
</div>
<div id="email-address-container">
<p>Email Address:</p>
<p>##################</p>
</div>
</footer>
</div>
</body>
</html>