-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathletter.html
More file actions
49 lines (38 loc) · 1.2 KB
/
letter.html
File metadata and controls
49 lines (38 loc) · 1.2 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="letter.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Aldrich&family=Pixelify+Sans:wght@400..700&display=swap"
rel="stylesheet"
/>
<title>Birthday Letter💗</title>
</head>
<body>
<!-- Envelope Screen -->
<div id="envelope-container">
<img src="envelope.png" alt="Envelope" id="envelope" />
<p>💌 something special 💌</p>
</div>
<!-- Letter Screen -->
<div id="letter-container">
<div class="letter-window">
<h1 id="letter-title">Happy Birthday 🎉</h1>
<img src="cat_heart.gif" class="cat" id="letter-cat" />
<div class="buttons" id="letter-buttons">
<img src="next.png" class="btn yes-btn" alt="Yes" />
<div class="no-wrapper">
<img src="heart.png" class="btn no-btn" alt="No" />
</div>
</div>
<p id="final-text" class="final-text" style="display:none">
🎂 Party mode activated!!<br>
Let’s celebrate the whole day 🎀
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>