-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="color.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<title>RBB Color Game</title>
</head>
<body>
<h1><span id="norm">GUESS THE </span><br>
<span id="norm">CHNs</span><span id="colorD">RGB</span>
<br>
<span id="norm">COLOR GAME</span></h1>
<div id="stripe">
<button id="reset">New Colors</button>
<span id="message"></span>
<button id="easy">Easy</button>
<button class="selected" id="hard">Hard</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>
<a class="social" href="https://facebook.com/CHNsPart"><i class="fab fa-facebook-f"></i></a>
<a class="social" href="https://instagram.com/CHNsPart"><i class="fab fa-instagram"></i></a>
<script src="colorgame.js"></script>
</body>
</html>