-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (31 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Etch A Sketch</title>
<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=Dancing+Script:wght@400;500;600;700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<script src="./script.js" defer></script>
</head>
<body class="flexbox">
<div class="flexbox-row">
<button id="clear-button" class="gold-font"><strong><em>RESET</em></strong></button>
<h1 class="gold-font">Etch A Sketch</h1>
<button id="resize-button" class="gold-font"><strong><em>RESIZE</em></strong></button>
</div>
<div class="container">
</div>
<footer>
<p class="gold-font">
Created by <a href="https://github.com/lunkums/" class="gold-font">Lunkums</a> | <a
href="https://github.com/lunkums/TheOdinProject/tree/main/etch-a-sketch" class="gold-font"
style="text-decoration: none">Source</a>
</p>
</footer>
</body>
</html>