-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (86 loc) · 4.11 KB
/
index.html
File metadata and controls
91 lines (86 loc) · 4.11 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valentine's Gift</title>
<!-- CDN Links -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- Custom Css -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Responsive -->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- Icon -->
<link rel="Icon" href="icon/icon.png">
</head>
<body>
<!-- Welcome Message -->
<div class="welcome-message">
<h1>Happy Valentine's Day! ❤️</h1>
<p>Click the button below to open your special gift</p>
<button class="start-button">Open Gift</button>
</div>
<!-- End Of Welcome Messages -->
<div class="floating-hearts"></div>
<div class="gift-container">
<div class="gift-box">
<!-- <div class="ribbon"></div> -->
<div class="side front">
<div class="heart"></div>
</div>
<div class="side back"></div>
<div class="side left"></div>
<div class="side right"></div>
<div class="side top"></div>
<div class="side bottom"></div>
</div>
<div class="gallery">
<div class="gallery-grid">
<div class="gallery-item" style="--rotation: -3deg; --delay: 0s; --tape-rotation: -45deg;">
<div class="polaroid-tape left"></div>
<div class="polaroid-tape right"></div>
<img src="assets/gallery/1.jpg" alt="Romantic moment 1">
<div class="gallery-caption">Our First Date ❤️</div>
</div>
<div class="gallery-item" style="--rotation: 2deg; --delay: 0.2s; --tape-rotation: 45deg;">
<div class="polaroid-tape left"></div>
<div class="polaroid-tape right"></div>
<img src="assets/gallery/1.jpg" alt="Romantic moment 2">
<div class="gallery-caption">Beautiful Sunset Together 🌅</div>
</div>
<div class="gallery-item" style="--rotation: -2deg; --delay: 0.4s; --tape-rotation: -30deg;">
<div class="polaroid-tape left"></div>
<div class="polaroid-tape right"></div>
<img src="assets/gallery/1.jpg" alt="Romantic moment 3">
<div class="gallery-caption">Perfect Evening 🌙</div>
</div>
<div class="gallery-item" style="--rotation: 3deg; --delay: 0.6s; --tape-rotation: 30deg;">
<div class="polaroid-tape left"></div>
<div class="polaroid-tape right"></div>
<img src="assets/gallery/1.jpg" alt="Romantic moment 4">
<div class="gallery-caption">Sweet Memories 💕</div>
</div>
<div class="gallery-item" style="--rotation: -1deg; --delay: 0.8s; --tape-rotation: -40deg;">
<div class="polaroid-tape left"></div>
<div class="polaroid-tape right"></div>
<img src="assets/gallery/1.jpg" alt="Romantic moment 5">
<div class="gallery-caption">Together Forever 💑</div>
</div>
<div class="gallery-item" style="--rotation: 2deg; --delay: 1s; --tape-rotation: 40deg;">
<div class="polaroid-tape left"></div>
<div class="polaroid-tape right"></div>
<img src="assets/gallery/1.jpg" alt="Romantic moment 6">
<div class="gallery-caption">Happy Moments ✨</div>
</div>
</div>
</div>
</div>
<button class="music-toggle">
<i class="fas fa-music"></i>
</button>
<div class="credits">Made with ❤️ by Stevencodelab</div>
<script src="assets/js/main.js"></script>
</body>
</html>