-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (64 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Camp Survey Form</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1 id="title">Join the Coding Camp</h1>
<p id="description">Please complete the form below to sign up for our intensive coding camp.</p>
</header>
<main>
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name">Name:</label>
<input id="name" type="text" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label id="email-label" for="email">Email:</label>
<input id="email" type="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label id="number-label" for="number">Years of Experience:</label>
<input id="number" type="number" min="0" max="50" placeholder="Enter your years of experience" required>
</div>
<div class="form-group">
<label for="dropdown">Preferred Coding Path:</label>
<select id="dropdown" name="codepath" required>
<option value="" disabled selected>Select a path</option>
<option value="frontend">Front-end Web Development</option>
<option value="backend">Back-end Web Development</option>
<option value="fullstack">Full-stack Web Development</option>
<option value="datascience">Data Science</option>
</select>
</div>
<div class="form-group">
<p>Preferred Tech Stack:</p>
<label><input type="radio" name="stack" value="MERN" required> MERN Stack</label><br>
<label><input type="radio" name="stack" value="MEAN"> MEAN Stack</label><br>
<label><input type="radio" name="stack" value="LAMP"> LAMP Stack</label>
</div>
<div class="form-group">
<p>Which topics are you interested in? (Select all that apply):</p>
<label><input type="checkbox" name="interests" value="JavaScript"> JavaScript</label><br>
<label><input type="checkbox" name="interests" value="Python"> Python</label><br>
<label><input type="checkbox" name="interests" value="Machine Learning"> Machine Learning</label><br>
<label><input type="checkbox" name="interests" value="Cloud Computing"> Cloud Computing</label>
</div>
<div class="form-group">
<label for="comments">Additional Comments:</label>
<textarea id="textarea" name="comments" rows="5" cols="30" placeholder="Enter your comments here"></textarea>
</div>
<div class="form-group">
<input id="submit" type="submit" value="Submit">
</div>
</form>
</main>
<footer>
<p>© 2024 Coding Camp Survey</p>
</footer>
</body>
</html>