-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 805 Bytes
/
index.html
File metadata and controls
23 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>The Fun Is In The Challenge -- SIMON</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,800' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div id="top-div">
<button id="green-button" data-color="green" class="tap-pad top-butts"></button>
<button id="red-button" data-color="red" class="tap-pad top-butts"></button>
</div>
<div id="under-div">
<button id="yellow-button" data-color="yellow" class="tap-pad"></button>
<button id="blue-button" data-color="blue" class="tap-pad"></button>
</div>
<button id="simon-button"> SIMON </button>
</body>
</html>