-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.html
30 lines (29 loc) · 1011 Bytes
/
apps.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Quiz app</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="aaps1.css">
<script defer src="app.js"></script>
<title>quiz app</title>
</head>
<body><div class="container">
<h1> QUICK QUIZZ!!!</h1>
<h3>THINK OR LOOSE!!!</h3>
<div class = "abc">
<i class="fa fa-certificate" aria-hidden="true"></i></div><br><br>
<div id="question-container" class="hide">
<div id="question"> Question</div>
<div id="answer-buttons" class="btn-grid">
<button class="btn">Answer 1</button>
<button class="btn">Answer 2</button>
<button class="btn">Answer 3</button>
<button class="btn">Answer 4</button>
</div>
</div>
<div class="controls">
<button id="start-btn" class="start-btn btn">Start</button>
<button id="next-btn" class="next-btn btn hide">Next</button>
</div>
</div>