football lover bd

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AKC</title>
<style>
body {
background-color: black;
text-align: center;
font-family: Arial, sans-serif;
}
h1 {
color: red;
font-size: 50px;
text-shadow: 3px 3px 10px yellow;
}
h2 {
font-size: 40px;
}
.yellow { color: yellow; text-shadow: 2px 2px 8px red; }
.green { color: lightgreen; text-shadow: 2px 2px 8px cyan; }
.cyan { color: cyan; text-shadow: 2px 2px 8px pink; }
.orange { color: orange; text-shadow: 2px 2px 8px white; }
</style>
</head>
<body>
<h1>🚀 This is My First Web Page 🚀</h1>
<h2 class="yellow">🌟 Welcome to AKC Website 🌟</h2>
<h2 class="green">💻 Learning HTML is Fun 💻</h2>
<h2 class="cyan">🔥 Practice Makes You Perfect 🔥</h2>
<h2 class="orange">🎯 Keep Going, Never Give Up 🎯</h2>
</body>
</html>