-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdmv.html
71 lines (63 loc) · 2.21 KB
/
dmv.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>
<title>DMV Practice</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet"
type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="css/freelancer.min.css" rel="stylesheet">
</head>
<body id="page-top">
<section class="portfolio" id="portfolio">
<div class="container">
<h2 class="text-center text-uppercase text-secondary mb-0">Practice Questions</h2>
<hr class="star-dark mb-5">
<div class="row">
<div class="col">
<h3 id="questionDiv">Question</h3>
</div>
<div class="col" id="imageDiv">
Image
</div>
</div>
<hr class="star-dark mb-5">
<div class="row">
<div class="col" id="answersDiv">
Answers
</div>
</div>
<div class="row">
<div class="col" id="resultDiv">
More info
</div>
</div>
<hr class="star-dark mb-5">
<div class="row">
<div class="col" id="verifyDiv">
<button class="text-uppercase bg-primary text-white rounded" type="button" id="checkButton">
Check Answer
</button>
</div>
<div class="col" id="nextQuestionDiv">
<button class="text-uppercase bg-primary text-white rounded" type="button" id="nextButton">
Next Question
</button>
</div>
</div>
</div>
</section>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/qs.js"></script>
</body>
</html>