Skip to content
Open
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
17 changes: 12 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down Expand Up @@ -36,6 +37,7 @@
opacity: 0;
transform: translateY(-20px);
}

to {
opacity: 1;
transform: translateY(0);
Expand All @@ -56,9 +58,12 @@
}

@keyframes bounce {
0%, 100% {

0%,
100% {
transform: translateY(0);
}

50% {
transform: translateY(-20px);
}
Expand Down Expand Up @@ -107,22 +112,23 @@
}
</style>
</head>

<body>
<div class="container">
<h1>Welcome to the Losers' Corner! 🏆</h1>
<div class="emoji">😎</div>

<p>
Congratulations! You've found the exclusive club where every setback is just a setup for a comeback.
</p>

<div class="quote">
"I have not failed. I've just found 10,000 ways that won't work."
"I have not failed. I've just found 10,000 ways that won't work."
<br>- Thomas Edison
</div>

<p>
Remember: Every champion was once a contender who refused to give up.
Remember: Every champion was once a contender who refused to give up.
Every mistake is a lesson, and every failure is a stepping stone to success.
</p>

Expand All @@ -131,8 +137,9 @@ <h1>Welcome to the Losers' Corner! 🏆</h1>
</p>

<a href="#" class="button" onclick="alert('Keep going! You got this! 🚀'); return false;">
Get Motivated
Get Motivated and enjoy coding!
</a>
</div>
</body>

</html>