| Current Path : /home/siteany/www/ |
| Current File : /home/siteany/www/index.html |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site78</title>
<style>
:root {
--primary: #002395;
--secondary: #ED2939;
--dark: #1a1a1a;
--light: #f8f9fa;
--gray: #6c757d;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: var(--light);
color: var(--dark);
line-height: 1.6;
}
header {
background: linear-gradient(135deg, var(--primary) 0%, #001558 100%);
color: white;
padding: 2rem 0;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
header h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
letter-spacing: 2px;
}
header p {
font-size: 1.1rem;
opacity: 0.9;
}
nav {
background-color: white;
display: flex;
justify-content: center;
padding: 1rem;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 100;
}
nav a {
color: var(--dark);
text-decoration: none;
margin: 0 1.5rem;
font-weight: 600;
transition: color 0.3s ease;
position: relative;
}
nav a:hover {
color: var(--secondary);
}
nav a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: var(--secondary);
transition: width 0.3s ease;
}
nav a:hover::after {
width: 100%;
}
main {
max-width: 1100px;
margin: 3rem auto;
padding: 0 1.5rem;
}
.hero {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
margin-bottom: 3rem;
border-left: 5px solid var(--secondary);
}
.hero h2 {
font-size: 2.2rem;
margin-bottom: 1rem;
color: var(--primary);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.card {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.card h3 {
color: var(--primary);
margin-bottom: 1rem;
font-size: 1.4rem;
}
.btn {
display: inline-block;
background-color: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 25px;
text-decoration: none;
margin-top: 1.5rem;
font-weight: 500;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
background-color: var(--secondary);
transform: scale(1.05);
}
footer {
background-color: var(--dark);
color: white;
text-align: center;
padding: 2rem 0;
margin-top: 4rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>Site78</h1>
<p>Bienvenue sur notre espace numérique moderne</p>
</header>
<nav>
<a href="#accueil">Accueil</a>
<a href="#services">Services</a>
<a href="#a-propos">À Propos</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section id="accueil" class="hero">
<h2>Découvrez notre univers</h2>
<p>Nous créons des expériences numériques uniques, élégantes et performantes. Notre équipe est dédiée à la transformation de vos idées en projets concrets et percutants.</p>
<a href="#services" class="btn">En savoir plus</a>
</section>
<section id="services" class="grid">
<div class="card">
<h3>Création Web</h3>
<p>Des designs modernes et épurés, adaptés à tous les écrans pour offrir la meilleure expérience utilisateur possible.</p>
</div>
<div class="card">
<h3>Stratégie Digitale</h3>
<p>Nous vous accompagnons dans le développement de votre visibilité en ligne pour atteindre vos objectifs.</p>
</div>
<div class="card">
<h3>Innovation</h3>
<p>Toujours à la pointe des technologies actuelles pour vous proposer des solutions performantes et sécurisées.</p>
</div>
</section>
</main>
<footer>
<p>© 2026 Site78. Tous droits réservés. Créé avec élégance.</p>
</footer>
</body>
</html>