-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (77 loc) · 2.79 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
<!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>WHIZZBABES</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body>
<!-- navigation bar section -->
<div class="navcont">
<nav class="navbar">
<div class="icon">
<i class="fas fa-laptop-code"></i>
<h1>WHIZZ<span style="color: yellow;">BABES</span></h2>
</div>
<div class="links">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Quiz</a></li>
</ul>
</div>
</nav>
</div>
<!-- end of navgation bar section -->
<div class="testcont">
<div class="test">
<h1>TEST YOUR PINE SELF</h1>
<P>This is a brief test to gauge your<br> understandig of Javascript</P>
<a href="#"><button id="quiz">START QUIZ</button></a>
</div>
</div>
<!-- footer section -->
<footer>
<div class="footcont">
<div class="cont1"><p>All rights reserved</p></div>
<div class="cont2">
<i class="fab fa-youtube-square"></i>
<i class="fab fa-whatsapp-square"></i>
<i class="fas fa-envelope-square"></i>
</div>
</div>
</footer>
<!-- quiz section -->
<section class="quizsection">
<div class="quiz-container" id="quiz">
<div class="quiz-header">
<h2 id="question">Question Text</h2>
<ul>
<li>
<input type="radio" name="answer" id="a" class="answer">
<label for="a" id="a_text">Answer</label>
</li>
<li>
<input type="radio" name="answer" id="b" class="answer">
<label for="b" id="b_text">Answer</label>
</li>
<li>
<input type="radio" name="answer" id="c" class="answer">
<label for="c" id="c_text">Answer</label>
</li>
<li>
<input type="radio" name="answer" id="d" class="answer">
<label for="d" id="d_text">Answer</label>
</li>
</ul>
</div>
<!-- submit button goes here -->
<button id="submit">Submit</button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>