-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Simon Game</title>
<link type="text/css" rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body>
<h1 class="text-center title"></h1>
<div id="container">
<div class="boxes" id="boxGreen"></div>
<div class="boxes" id="boxRed"></div>
<div class="boxes" id="boxYellow"></div>
<div class="boxes" id="boxBlue"></div>
<div id="controlPanel">
<h1 class="text-center" id="title">Simon<span id="trademark">®</span></h1>
<div class="text-center" id="counter">0</div>
<input type="button" value="Start" id="start">
<input type="button" value="Strict" class="strict">
<input type="button" value="Reset" id="reset">
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>
<!-- testing newBranch -->