-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (42 loc) · 1.28 KB
/
index.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
<!--
@Author: Brendon Pagano <Annatsu>
@Date: 2017/08/29 23:30:65
@Email: [email protected]
@Filename: index.html
@Last modified by: Annatsu
@Last modified time: 2017/08/29 23:53:70
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0">
<meta http-equiv="expires" content="Tue, 10 May 1977 00:00:00 GMT">
<meta http-equiv="expires" content="-1">
<title>Calculator Game</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
<link href="calc.css" rel="stylesheet" />
</head>
<body>
<div id="calculator">
<div id="calc-display-outter">
<span id="level-n">level: 5</span>
<div id="calc-display-inner" class="clearfix">
<div class="calc-display-info">
<span>moves: 3</span>
</div>
<div class="calc-display-info">
<span>goal: 4</span>
</div>
<div id="calc-display-result">
<span>123456</span>
</div>
</div>
</div>
</div>
</body>
</html>