-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.html
More file actions
33 lines (32 loc) · 990 Bytes
/
Copy pathweb.html
File metadata and controls
33 lines (32 loc) · 990 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>DOM RGB - ex</title>
<!-- connection to css file -->
<link rel="stylesheet" type="text/css" href="des.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
</head>
<body>
<div id="container">
<h3>THE GREAT</h3>
<h1><span class="rgbValue">value</span> <h1>
<h3>GUESSING GAME</h3>
</div>
<div id="container_Top">
<button class="place_nav" id="reset">NEW COLORS</button>
<span id="score">Start</span>
<button id="easy">EASY</button>
<button id="hard" class="selected">HARD</button>
</div>
<div id="container_Square">
<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>
<!-- from here down thats the conncetion to the JS file -->
<script type="text/javascript" src="script2.js"></script>
</body>
</html>