-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (69 loc) · 2.55 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Number Game in one Minute">
<meta name="keywords" content="HTML,CSS,JavaScript,Game,one,Minute">
<meta name="author" content="MotYim">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Game Custome Style -->
<link rel="stylesheet" href="css/style.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>One Minute Game</title>
</head>
<body>
<main>
<div class="container bg">
<div class="row">
<div class="col s12 m8 offset-m2 l6 offset-l3 logo center">
<img class="responsive-img" src="img/logo.png">
</div>
<div class="col s12 m8 offset-m2 l6 offset-l3 logo center">
<a class="waves-effect indigo darken-4 waves-light btn" href="#help">Help!</a>
<!-- Modal Structure -->
<div id="help" class="modal">
<div class="modal-content">
<h4>Help</h4>
<p>
The game depend on speed of calculation <br>
first you look at circle and press on the number at the keyboard that matches equation of level <br>
level 1: just press on the number <br>
level 2: press on key that match (key = number - 1) <br>
level 3: soon
</p>
</div>
</div>
<a class="btn indigo darken-4 waves-effect waves-light" href="game.html" >Start Game</a>
</div>
</div>
</div>
</main>
<footer class="page-footer myFooter">
<div class="footer-copyright">
<div class="container">
© 2016 One Mintue Game
<div class="chip right">
<img src="img/profile.png" alt="Contact Person">
<a href="https://motyim.github.io/" target="_blank">MotYim</a>
</div>
</div>
</div>
</footer>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script>
$(document).ready(function(){
$('.modal').modal();
});
//init cookie
document.cookie ="score=0;";
document.cookie ="level=0;";
</script>
</body>
</html>