0% found this document useful (0 votes)
11 views3 pages

Football Network: Scores & Communities

Uploaded by

Salomon Barry
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views3 pages

Football Network: Scores & Communities

Uploaded by

Salomon Barry
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Football Network</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet">
<style>
/* Inclure tout le CSS ici */
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #ffffff;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #006400;
}
.header .logo {
display: flex;
align-items: center;
gap: 10px;
}
.header .logo i {
font-size: 32px;
color: #ffd700;
}
.header h1 {
font-size: 24px;
color: #ffffff;
}
.nav-links {
list-style: none;
display: flex;
gap: 15px;
}
.nav-links a {
color: #ffffff;
text-decoration: none;
font-size: 16px;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ffd700;
}
.hero {
text-align: center;
padding: 50px 20px;
background-color: #004d00; /* Remplace l'image si indisponible */
color: #ffffff;
}
.hero h2 {
font-size: 36px;
margin-bottom: 10px;
}
.hero p {
font-size: 18px;
margin-bottom: 20px;
}
.cta-button {
padding: 15px 30px;
background-color: #ffd700;
border: none;
border-radius: 5px;
color: #000000;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #ffc107;
}
</style>
</head>
<body>
<header class="header">
<div class="logo">
<i class="fas fa-futbol"></i>
<h1>Football Network</h1>
</div>
<nav>
<ul class="nav-links">
<li><a href="#">Accueil</a></li>
<li><a href="#">Scores</a></li>
<li><a href="#">Communautés</a></li>
<li><a href="#">Profil</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h2>Suivez votre passion, en direct!</h2>
<p>Restez informé des scores, partagez vos moments forts, et connectez-vous avec d'autres
fans.</p>
<button class="cta-button">Commencez maintenant</button>
</section>
</body>
</html>

You might also like