-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColorGame.html
36 lines (36 loc) · 1.11 KB
/
ColorGame.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
<!DOCTYPE html>
<html>
<head>
<title>Color Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="ColorGame.css">
</head>
<body>
<div class="blue-background">
<div class="title-bar center">
<h3>The great</h3>
<h1>RGB(<span id="r"></span>, <span id="g"></span>, <span id="b"></span>)</h1>
<h3>Guessing game</h3>
</div>
</div>
<div class="bg-white">
<table class="width36">
<tr>
<td class="width12 left" id="reset">New Colors?</td>
<td class="width12 center" id="message"></td>
<td class="width12 right"><span id="easy">Easy</span>   <span id="hard" class="selected">Hard</span></td>
</tr>
</table>
</div>
<div id="parent">
<div class="square" id="a1"></div>
<div class="square" id="a2"></div>
<div class="square" id="a3"></div>
<div class="square" id="a4"></div>
<div class="square" id="a5"></div>
<div class="square" id="a6"></div>
</div>
</body>
<script type="text/javascript" src="ColorGame.js"></script>
</html>