-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (22 loc) · 905 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Praise&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&display=swap" rel="stylesheet">
<script src="index.js" defer></script>
</head>
<body>
<h1 id="title">Etch-A-Sketch</h1>
<div id="button">
<button class="buttons" id="restart"> Reset The Grid </button>
<button class="buttons" id="random" value="off">Random Colour Generator</button>
</div>
<div id="container"></div>
</body>
</html>