-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1007 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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<title>Christmas Joke</title>
<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=Coiny&family=Poppins:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<main id="window-container">
<section class="left-door">
<img src="left-door-min.png" />
</section>
<section class="joke-display">
<h1 id="joke-display">
Santa gave me a book on anti-gravity. It's impossible to put down.
</h1>
</section>
<section class="right-door">
<img src="right-door-min.png" />
</section>
</main>
<script src="index.js" type="module"></script>
</body>
</html>