-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (52 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="notify">This is a test!</div>
<div class="gameboard">
<div class="pieceboard">
<div class="separator">
<div class="row">
<div class="col-xs-6 play" id="green"></div>
<div class="col-xs-6 play" id="red"></div>
</div>
<div class="row">
<div class="console-rim">
<div class="console">
<div class="title">
<h1>Simon</h1>
</div>
<div class="level-indicator playlevel text-center">--</div>
<div class="startgame-body"><button class="startgame btn btn-primary btn-circle">Start</button></div>
<div class="strict-game"><button class="btn btn-info btn-circle">Strict</button></div>
<div class="power text-center"><button class="btn btn-success btn-circle"><i class="glyphicon glyphicon-off"></i></button></div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 play" id="yellow"></div>
<div class="col-xs-6 play" id="blue"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="index.js"></script>
</body>
</html>