-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (86 loc) · 2.16 KB
/
index.html
File metadata and controls
97 lines (86 loc) · 2.16 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
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Happy Girlfriend Day 💘</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
height: 100%;
font-family: 'Segoe UI', sans-serif;
overflow: hidden;
position: relative;
}
video.bg-video {
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.85);
padding: 30px;
border-radius: 20px;
text-align: center;
width: 90%;
max-width: 400px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.content img {
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px solid #e91e63;
object-fit: cover;
margin-bottom: 15px;
}
h1 {
color: #e91e63;
font-size: 2rem;
margin-bottom: 10px;
}
p {
font-size: 1rem;
color: #444;
margin-bottom: 20px;
}
footer {
position: absolute;
bottom: 10px;
width: 100%;
text-align: center;
color: #fff;
font-size: 0.9rem;
text-shadow: 0 0 4px black;
}
</style>
</head>
<body>
<!-- 🎥 Background Video -->
<video class="bg-video" autoplay muted loop playsinline>
<source src="Aisha.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<!-- 💖 Main Content -->
<div class="content">
<img src="Aisha.jpg" alt="Nawal's Photo">
<h1>Happy Girlfriend Day, my world💖</h1>
<p>To my beautiful bby(Aisher), you make every moment brighter. Thank you for being in my life.You are the only one i loved and you are the only one i want to be with, I love you so much! 💕</p>
</div>
<!-- 👨💻 Footer -->
<footer>
Developed by RYDON 💻❤
</footer>
</body>
</html>