-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
45 lines (41 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
</style>
<meta charset="UTF-8">
<title>Simon Game</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="simstyle.css" rel="stylesheet">
</head>
<body>
<div class='container-fluid text-center'>
<div class='simon'>
<div class='box green' value='green'></div>
<div class='box red' value='red'></div>
<div class='box yellow' value='yellow'></div>
<div class='box blue' value='blue'></div>
<div class='panel'>
<h1 class='title'>Simon<span class='r'>®</span></h1>
<div class='upper'></div>
<div class='left'>
<h6 class='dash'>--</h6></div>
<div class='button middle'></div>
<div class='button right'></div>
<h6 class='text count'>COUNT</h6>
<h6 class='text start'>START </h6>
<h6 class='text strict'>STRICT</h6>
<h6 class='text1 off'>OFF</h6>
<h6 class='text on'>ON</h6>
<div class='last big'>
<div class='last small'></div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="simscript.js">
</script>
</body>
</html>