-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.31 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.31 KB
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
<html ng-app="BugController">
<head>
<title>Debugger</title>
<link href='http://fonts.googleapis.com/css?family=Fira+Mono' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="public/style.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript" src="public/jquery-1.7.2.js"></script>
<script type="text/javascript" src="public/script.js"></script>
</head>
<body>
<header>
<h1>Debugger: <span>Debug the code before the time runs out...<span></h1>
<div id = 'nav'>
<h3><div id = 'timer'>Timer: </div></h3>
<div id = 'score'><h3>Score: </h3> </div>
</div>
</header>
<div id="controls">
<div id = "levels" >
<h3>Choose a level: </h3>
<button id="easy" type="button" value="Junior-Dev"><h3>Junior-Dev</h3></button>
<button id="medium" type="button" value="Mid-Level"><h3>Mid-Level</h3></button>
<button id="hard" type="button" value="Senior-Dev" ><h3>Senior-Dev</h3></button>
<button id="extra-hard" type="button" value="Wizard" ><h3>Ninja</h3></button>
</div>
<div id = "new">
<button id="newgame" type="button" value="newgame" ><h3>Start a new game</h3></button>
</div>
</div>
<div id = "container">
<div id = "board">
</div>
</div>
</body>
</html>