Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions 42

This file was deleted.

Binary file removed b.txt
Binary file not shown.
Empty file added earh1.py
Empty file.
Empty file added earh10.py
Empty file.
Empty file added earh2.py
Empty file.
Empty file added earh3.py
Empty file.
Empty file added earh4.py
Empty file.
Empty file added earh5.py
Empty file.
Empty file added earh6.py
Empty file.
Empty file added earh7.py
Empty file.
Empty file added earh8.py
Empty file.
Empty file added earh9.py
Empty file.
58 changes: 58 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Valentine's Day ❤️</title>
<style>
body {
background-color: #ffccd5;
text-align: center;
font-family: Arial, sans-serif;
color: #d63384;
margin: 0;
overflow: hidden;
}

h1 {
margin-top: 50px;
font-size: 3rem;
text-shadow: 2px 2px #ff4d6d;
}

.heart {
position: absolute;
color: red;
font-size: 24px;
animation: float 5s linear infinite;
}

@keyframes float {
0% { transform: translateY(100vh) scale(1); opacity: 1; }
100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
</style>
</head>
<body>
<h1>❤️ Happy Valentine's Day! ❤️</h1>
<p>Wishing you love and happiness today and always.</p>

<script>
function createHeart() {
const heart = document.createElement("div");
heart.classList.add("heart");
heart.innerHTML = "❤️";
heart.style.left = Math.random() * 100 + "vw";
heart.style.animationDuration = Math.random() * 2 + 3 + "s";
document.body.appendChild(heart);

setTimeout(() => {
heart.remove();
}, 5000);
}

setInterval(createHeart, 300);
</script>
</body>
</html>