-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.html
56 lines (45 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assests/css/style.css">
<link rel="stylesheet" href="assests/css/responsive.css">
<link rel="icon" href="assests/img/favicon.png" type="image/gif" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>QUIZ</title>
</head>
<body>
<div class="quiz-container" id="quiz" data-aos="fade-up" data-aos-delay="200">
<div class="quiz-header">
<h1>Lets Play</h1>
<h2 id="question">Question Text</h2>
<ul>
<li>
<input type="radio" name="answwer" id="a" class="answer">
<label for="a" id="a_text">Answer</label>
</li>
<li>
<input type="radio" name="answwer" id="b" class="answer">
<label for="b" id="b_text">Answer</label>
</li>
<li>
<input type="radio" name="answwer" id="c" class="answer">
<label for="c" id="c_text">Answer</label>
</li>
<li>
<input type="radio" name="answwer" id="d" class="answer">
<label for="d" id="d_text">Answer</label>
</li>
</ul>
</div>
<div class="bid">
<button id="submit">Next</button></div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script type="text/javascript" src="assests/Js/app.js"></script>
</body>
</html>