forked from NicholasRohrer/rgb-guesser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 770 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>RGB Guesser</title>
<link rel="stylesheet" type="text/css" href="./rgbGuesser.css">
</head>
<body>
<h1>Errate die
<br>
<span id="colorDisplay">RGB</span>
<br>
Farbe unten!
</h1>
<div id="stripe">
<button id="reset">Neue Farben</button>
<span id="message"></span>
<button class="mode">Leicht</button>
<button class="mode selected">Schwer</button>
</div>
<div id="container">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<footer>Developed by <a href="https://github.com/NicholasRohrer">NicholasRohrer</a></footer>
<script type="text/javascript" src="./rgbGuesser.js"></script>
</body>
</html>