-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
66 lines (56 loc) · 2.13 KB
/
main.html
File metadata and controls
66 lines (56 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Love Letter For You 💕</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Floating hearts background -->
<div class="hearts-background" id="heartsContainer"></div>
<!-- Envelope -->
<div class="envelope-wrapper" id="envelopeWrapper">
<div class="envelope">
<div class="flap"></div>
<div class="body"></div>
</div>
<p class="click-hint">Click to open 💌</p>
</div>
<!-- Letter -->
<div class="letter-container" id="letterContainer">
<div class="letter">
<div class="letter-header">
<h1 class="animated-title">To My Dearest Love</h1>
<div class="date">Forever & Always</div>
</div>
<div class="letter-content">
<p class="paragraph">My Dearest,</p>
<p class="paragraph">
Every moment with you feels like a beautiful dream I never want to wake from.
Your smile lights up my darkest days, and your laughter is the melody my heart dances to.
</p>
<p class="paragraph">
In your eyes, I've found my home, and in your arms, I've discovered peace.
You are the poetry I could never write, the song I could never sing,
and the love I never knew I needed.
</p>
<p class="paragraph">
With every sunrise, I fall deeper, and with every sunset, I'm grateful that you're mine.
You make ordinary moments extraordinary, and you turn simple days into cherished memories.
</p>
<p class="paragraph">
Thank you for being you, for loving me, and for making my world infinitely brighter.
You are my today and all of my tomorrows.
</p>
<p class="signature">
Forever yours,<br>
<span class="signature-name">Your Love 💜</span>
</p>
</div>
<button class="close-btn" id="closeBtn">Close Letter ✕</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>