-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 947 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 947 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>My Snowglobe</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header class="hero">
<h1>My Snowglobe</h1>
<p class="tagline">shake it for a little winter kindness!</p>
</header>
<main>
<section class="globe-card">
<div class="globe" id="globe">
<img class="scene" src="https://snowglobe.hackclub.com/imgs/snowglobe2.png" alt="Snowglobe"/>
</div>
<button id="shake">Shake!</button>
<p class="message" id="message">press the button and see what settles</p>
</section>
</main>
<footer>
<p>made by me, in the snow</p>
</footer>
<script src="script.js"></script>
<div class="snow"></div>
</body>
</html>