-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Programming Langauge Test</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="js/jquery-3.5.1.js"></script>
<script src="js/scripts.js"></script>
<title>Some questions to help you pick a programming langauge to start programming!</title>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h2>What language should you learn for programming?</h2>
</div>
<form id="q1">
<div class="language">
<p><br>Which of the following Lanauges interest you?</p>
<input type="checkbox" name="langauge" value="1">Python<br>
<input type="checkbox" name="langauge" value="1">Javascript<br>
<input type="checkbox" name="langauge" value="1">R<br>
</div>
<div class="accomplish">
<p><br>What are you trying to accomplish by programming?</p>
<input type="checkbox" name="accomplish" value="1">Scripting<br>
<input type="checkbox" name="accomplish" value="1">Web/Mobile Development<br>
<input type="checkbox" name="accomplish" value="1">Data Science<br>
</div>
<div class="life">
<p><br>How's life going?</p>
<input type="checkbox" name="life" value="1">Amazing<br>
<input type="checkbox" name="life" value="-1">It could be better.<br>
<input type="checkbox" name="life" value="-2">Its going.<br>
</div>
<div class="music">
<p><br>What kind of music do you like?</p>
<input type="checkbox" name="music" value="1">EDM<br>
<input type="checkbox" name="music" value="1">Rock<br>
<input type="checkbox" name="music" value="1">Jazz<br>
</div>
<div class="reason">
<p><br>Why do you want to learn programming?</p>
<input type="checkbox" name="reason" value="1">Enjoyment<br>
<input type="checkbox" name="reason" value="1">Money<br>
<input type="checkbox" name="reason" value="1">Mental Challenge<br>
</div>
<button type="submit">Submit Survey</button>
</form>
<div class="hidden">
<h2 id="Python">You should learn Python</h2>
<h2 id="Javascript">You should learn JavaScript</h2>
<h2 id="R">You should learn R</h2>
</div>
</div>
</body>
</html>