-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject1.html
30 lines (25 loc) · 991 Bytes
/
project1.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>
<title>Quiz Game</title>
<link type='text/css' rel='stylesheet' href='stylesheet.css' />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open Sans" />
<link rel="stylesheet" href="./project1.css">
</head>
<body>
<div id='container'>
<div id='title'>
<h1>Quiz Game</h1>
</div>
<br />
<div id='quiz'></div>
<div class='button' id='next'><a href='#'>Next</a></div>
<div class='button' id='prev'><a href='#'>Prev</a></div>
<div class='button' id='start'> <a href='#'>Start Over</a></div>
</div>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script>
<script type="text/javascript" src='questions.json'></script>
<script type='text/javascript' src='jsquiz.js'></script>
<script src="./project1.js"></script>
</body>
</html>