-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.55 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>For My Valentine - Valary</title>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="valentine-card">
<div class="heart-decoration">❤️</div>
<h1 class="question">Valary Cherono,</h1>
<h2 class="question-sub">will you be my Valentine?</h2>
<div class="button-container">
<button id="yesBtn" class="btn yes-btn">YES</button>
<button id="noBtn" class="btn no-btn">NO</button>
</div>
</div>
<footer class="signature">
<p>With love, Emmanuel Kibet 💕</p>
</footer>
<div class="scroll-indicator">
<div class="scroll-text">Scroll for a surprise</div>
<div class="scroll-arrow">↓</div>
</div>
<div class="hidden-love-preview" id="lovePreview">
<div class="preview-content">
<h3>A special message awaits...</h3>
<p>My Dearest Valary, I wanted to build something just for you...</p>
<div class="preview-hearts">💕 💖 💕</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>