An interactive web page
<!DOCTYPE html>
<html>
<head>
<title>Professional Animated Web Page</title>
<style>
/* Reset styles */
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: 'Roboto', Arial, sans-serif;
background: linear-gradient(120deg, #4facfe, #00f2fe);
overflow: hidden;
}
/* Text animation */
h1 {
font-size: 60px;
color: #fff;
font-weight: 700;
text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
margin-bottom: 10px;
animation: fadeIn 2.5s ease-in-out;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
h2 {
font-size: 20px;
color: #ffffffcc;
margin-bottom: 30px;
font-style: italic;
}
/* Bouncing ball */
.ball {
position: absolute;
bottom: 150px;
width: 60px;
height: 60px;
background: linear-gradient(145deg, #fff, #dcdcdc);
border-radius: 50%;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
animation: bounce 3s infinite ease-in-out;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-250px);
}
}
/* Facebook Link Button */
.profile-link {
display: inline-block;
text-decoration: none;
color: white;
font-size: 18px;
font-weight: bold;
padding: 12px 30px;
border-radius: 25px;
background: linear-gradient(145deg, #1877f2, #145dbf);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease-in-out;
}
.profile-link:hover {
background: linear-gradient(145deg, #145dbf, #1877f2);
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
/* Footer */
footer {
position: absolute;
bottom: 10px;
text-align: center;
color: #ffffffcc;
font-size: 14px;
}
</style>
</head>
<body>
<!-- Animated Text -->
<h1>Welcome to My Website!</h1>
<h2>Crafted with care and creativity</h2>
<!-- Animated Ball -->
<div class="ball"></div>
<!-- Facebook Profile Link -->
<a href="https://www.facebook.com/profile.php?id=100094144211045&mibextid=ZbWKwL" class="profile-link" target="_blank">
Visit My Facebook Profile
</a>
<!-- Footer -->
<footer>
© 2025 Jobayer. All Rights Reserved.
</footer>
</body>
</html>