-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
44 lines (37 loc) · 1.9 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
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Color Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</head>
<body>
<div id="toptitle">
<h3>THE GREAT</h3>
<h1>RGB(<span id="red"></span>, <span id="green"></span>, <span id="blue"></span>)</h1>
<h3>GUESSING GAME</h3>
</div>
<nav class="navbar navbar-expand-lg " id="navigationbb" >
<div class="container">
<button class="btn btn-light" id="newcolor">NEW COLORS</button><strong><span id="result"></span></strong>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
</nav>
<div class="container" id="colors">
<div class="square " id="box1"></div>
<div class="square " id="box2"></div>
<div class="square " id="box3"></div>
<div class="square " id="box4"></div>
<div class="square " id="box5"></div>
<div class="square " id="box6"></div>
</div>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>