-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.38 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, initial-scale=0.54">
<title>Color Memory Game</title>
<link href="images/favicon.ico" rel="icon" />
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/boxy.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="game_board"></div>
<div class="side">
<div class="logo"></div>
<div class="score_panel"></div>
<div class="keyboard_support">Key Control is supported.</div>
<input type="button" class="btn btn_red btn_restart restart" id="restart" value="Restart" />
</div>
</div>
</body>
</html>
<script src="js/jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="js/prototype.min.js" type="text/javascript"></script>
<script src="js/modernizr.custom.js" type="text/javascript"></script>
<script src="js/jquery.boxy.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/script.js"></script>