-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.45 KB
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 1.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Gyul! Hap!</title>
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/latest/normalize.css">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<main class="grid">
<div class="tile top left"><div class="shape"></div><span>1</span></div>
<div class="tile top center"><div class="shape"></div><span>2</span></div>
<div class="tile top right"><div class="shape"></div><span>3</span></div>
<div class="tile middle left"><div class="shape"></div><span>4</span></div>
<div class="tile middle center"><div class="shape"></div><span>5</span></div>
<div class="tile middle right"><div class="shape"></div><span>6</span></div>
<div class="tile bottom left"><div class="shape"></div><span>7</span></div>
<div class="tile bottom center"><div class="shape"></div><span>8</span></div>
<div class="tile bottom right"><div class="shape"></div><span>9</span></div>
</main>
<aside>
<button class="gyul" type="reset">GYUL</button>
<div class="score-text">Score: <span id="score">0</span></div>
</aside>
<script src="scripts.js"></script>
</body>
</html>