-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcan.html
More file actions
56 lines (55 loc) · 1.7 KB
/
can.html
File metadata and controls
56 lines (55 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valentine's Day Proposal</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: linear-gradient(to right, #ff758c, #ff7eb3);
font-family: 'Poppins', sans-serif;
color: white;
text-align: center;
}
.container {
background: rgba(255, 255, 255, 0.2);
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
max-width: 500px;
}
h1 {
font-size: 36px;
font-weight: 600;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
.heart {
font-size: 50px;
animation: heartbeat 1.5s infinite;
}
@keyframes heartbeat {
0% { transform: scale(1); }
50% { transform: scale(1.2); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
<div class="container">
<h1>"I don’t know if you’ve. noticed I can’t hide it anymore but I really like you. If you give me one chance I will make you mine forever 💖</h1>
<p>"I can’t hide it anymore—I really like you. Can we make this something special?"
</p>
<div class="heart">❤️</div>
</div>
</body>
</html>