Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Football Team</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:Arial, sans-serif;
background:#f4f4f4;
color:#333;
}
header{
background:url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=1200') center/cover;
height:90vh;
display:flex;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}
header .content{
background:rgba(0,0,0,0.6);
padding:30px;
border-radius:15px;
}
header h1{
font-size:60px;
margin-bottom:10px;
}
header p{
font-size:22px;
}
nav{
background:#111827;
padding:15px;
text-align:center;
position:sticky;
top:0;
}
nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-weight:bold;
}
section{
padding:60px 20px;
text-align:center;
}
.players{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}
.card{
background:white;
border-radius:15px;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.card img{
width:100%;
border-radius:10px;
height:250px;
object-fit:cover;
}
button{
margin-top:15px;
padding:12px 20px;
border:none;
background:#16a34a;
color:white;
border-radius:10px;
cursor:pointer;
font-size:16px;
}
button:hover{
background:#15803d;
}
footer{
background:#111827;
color:white;
text-align:center;
padding:20px;
}
</style>
</head>
<body>
<header>
<div class="content">
<h1>Dream FC β½</h1>
<p>One Team β’ One Dream β’ One Family</p>
</div>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Players</a>
<a href="#">Matches</a>
<a href="#">Gallery</a>
<a href="#">Contact</a>
</nav>
<section>
<h2>Our Players</h2>
<div class="players">
<div class="card">
<img src="https://images.unsplash.com/photo-1517466787929-bc90951d0974?q=80&w=800" alt="">
<h3>Player One</h3>
<p>Forward</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1579952363873-27f3bade9f55?q=80&w=800" alt="">
<h3>Player Two</h3>
<p>Midfielder</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1624526267942-ab0ff8a3e972?q=80&w=800" alt="">
<h3>Player Three</h3>
<p>Defender</p>
</div>
</div>
<button onclick="teamMessage()">
Support The Team
</button>
</section>
<footer>
<p>Β© 2026 Dream FC | Built by Sultan</p>
</footer>
<script>
function teamMessage(){
alert("Welcome to Dream FC π₯β½");
}
</script>
</body>
</html>5
2
591KB
590KB
73.0ms
136.0ms
226.0ms