-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.48 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
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1 class="header headerBefore" id="headerBefore">freeCodeCamp JS Simon Game</h1>
<div id="box" class="box">
<div class="pad topLeftGreen" id="topLeftGreen"></div>
<div class="pad topRightRed" id="topRightRed"></div>
<div class="pad bottomLeftYellow" id="bottomLeftYellow"></div>
<div class="pad bottomRightBlue" id="bottomRightBlue"></div>
<div id="settings" class="settings">
<h1 id="simon" class="simon">Simon Ⓡ</h1>
<div id="count" class="count"></div>
<div id="start" class="start"></div>
<div id="strict" class="strict"></div>
<div id="strictLed" class="strictLed"></div>
<div id="startLabel" class="startLabel"><h5>Start</h5></div>
<div id="strictLabel" class="strictLabel"><h5>Strict</h5></div>
<div id="switch" class="switch">
<div class="onOff off" id="off"></div>
</div>
<div id="switchLabel" class="switchLabel"><h5>Off/On</h5></div>
</div>
</div>
<script src="main.js"></script>
</body>