-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
25 lines (24 loc) · 967 Bytes
/
main.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whack-a-Mole</title>
<link rel="stylesheet" href="styles.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=Amatic+SC&family=Montserrat+Alternates:ital,wght@0,100;1,100&family=Montserrat:wght@600;700&family=Pixelify+Sans&family=Shadows+Into+Light&display=swap" rel="stylesheet">
</head>
<body>
<h1 class="score">Whack-A-Mole! <span>0</span></h1>
<div class="board">
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
</div>
<script src="main.js"></script>
</body>
</html>