-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.php
36 lines (26 loc) · 864 Bytes
/
game.php
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
<!doctype html>
<html lang="en">
<head>
<title>Calculus Game by CodeForest</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<link type="text/css" rel="stylesheet" href="styles.css" />
<link href='http://fonts.googleapis.com/css?family=Volkhov:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="header">
<h1><a href=""><img src="calculus-logo.png" alt="Calculus Game by CodeForest" /></a></h1>
</div>
<div id="game_header">
<div id="task">
<span id="first">?</span>
<span id="operation"></span>
<span id="second">?</span>
=
<span id="result"></span>
</div>
<div id="timer" class=""></div>
</div>
<div id="grid"></div>
<script type="text/javascript" src="scripts/main.js"></script>
</body>
</html>