forked from osborn/jquerygame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyjquerygame.html
70 lines (66 loc) · 1.69 KB
/
myjquerygame.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
<html>
<head>
<title>Osborn's Game</title>
<!--Linking my css and javascript to the html-->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="game.css">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div class="row-fluid">
<div class="span12">
<h1>
Osborn's Game
</h1>
</div>
</div>
<div class="row-fluid">
<div class="span6" id="controls">
<div class="row-fluid">
<div class="span12">
<h2>
Welcome
</h2>
<p>This is a simple game.</p>
<p>You play it by clicking on the box</p> <p>that appears in the game window.</p>
<p>You only have a minute to click a </p><p>box</p>
<p>Click on the buton below to begin.</p>
</div>
</div>
<br>
<br>
<div class="row-fluid">
<div class="span12">
<a href="#" class="btn btn-primary" type="button" id="button">Click me to start!</a>
</div>
</div>
<br>
<div class="row-fluid">
<div class="span12">
<p>High Score:</p>
</div>
</div>
<br>
<div class="row-fluid">
<div class="span12">
<p id='user'>Your Score:</p>
<p id="timer">Tmer:</p>
</div>
</div>
</div>
<div class="span6" id="game-area">
<div class='a' id="dodgeball"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="game.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
</body>
</html>