2025-01-07 21:10:07 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2025-01-07 21:13:33 +01:00
|
|
|
<title>Green Cocooning </title>
|
2025-01-07 21:10:07 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Comic+Sans+MS&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
/* Global Settings */
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Comic Sans MS', sans-serif; /* Police mignonne */
|
|
|
|
background-color: #f1f8f3; /* Vert pâle pastel */
|
|
|
|
color: #3c763d; /* Vert foncé doux */
|
|
|
|
line-height: 1.6;
|
|
|
|
padding-bottom: 60px; /* Espace pour le footer */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
header {
|
|
|
|
background-color: #82b74b; /* Vert clair pastel */
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 40px 20px;
|
|
|
|
border-radius: 20px 20px 0 0; /* Coins arrondis pour un effet mignon */
|
|
|
|
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* Ombre douce */
|
|
|
|
}
|
|
|
|
|
|
|
|
header h1 {
|
|
|
|
font-size: 4em;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Ombre légère */
|
|
|
|
}
|
|
|
|
|
|
|
|
header p {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Navigation */
|
|
|
|
nav {
|
|
|
|
background-color: #a8d08d; /* Vert pastel clair */
|
|
|
|
padding: 15px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0 20px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: bold;
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a:hover {
|
|
|
|
color: #ffd700; /* Jaune mignon pour le survol */
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sections */
|
|
|
|
section {
|
|
|
|
padding: 20px;
|
|
|
|
margin: 20px;
|
|
|
|
background-color: #ffffff; /* Fond blanc doux */
|
|
|
|
border-radius: 20px;
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Intro Section */
|
|
|
|
.intro img {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 20px; /* Coins arrondis */
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Content Container */
|
|
|
|
.content-container {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box {
|
|
|
|
width: 30%;
|
|
|
|
background-color: #ffffff; /* Fond blanc */
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 15px;
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
|
|
|
|
text-align: center;
|
|
|
|
transition: transform 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box:hover {
|
|
|
|
transform: translateY(-10px); /* Effet de levée au survol */
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box img {
|
|
|
|
width: 80%;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 15px; /* Coins arrondis */
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box h3 {
|
|
|
|
margin-top: 15px;
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: #3c763d; /* Vert foncé */
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box p {
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 1.1em;
|
|
|
|
color: #5a5a5a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box a {
|
|
|
|
color: #ffd700; /* Jaune doux */
|
|
|
|
text-decoration: none;
|
|
|
|
margin-top: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box a:hover {
|
|
|
|
color: #3c763d;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Footer */
|
|
|
|
footer {
|
|
|
|
background-color: #82b74b;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 20px 20px 0 0; /* Coins arrondis pour le footer */
|
|
|
|
}
|
|
|
|
|
|
|
|
footer p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsive Design */
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.content-container .box {
|
|
|
|
width: 48%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
header h1 {
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container .box {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer p {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- Header -->
|
|
|
|
<header>
|
|
|
|
<h1>Green Cocooning</h1>
|
|
|
|
<p>Un havre de paix naturel et mignon pour l'âme et le corps</p>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<!-- Navigation -->
|
|
|
|
<nav>
|
|
|
|
<a href="#accueil">Accueil</a>
|
|
|
|
<a href="#conseils">Conseils</a>
|
|
|
|
<a href="#produits">Produits Écologiques</a>
|
|
|
|
<a href="#contact">Contact</a>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<!-- Main Section -->
|
|
|
|
<section id="accueil" class="intro">
|
|
|
|
<h2>Bienvenue dans l'univers du Green Cocooning</h2>
|
|
|
|
<p>
|
|
|
|
Le cocooning est un art de vivre qui consiste à créer un espace de confort et de bien-être.
|
|
|
|
Ici, nous avons choisi de célébrer la nature, en intégrant des éléments verts, des matériaux naturels,
|
|
|
|
et des ambiances apaisantes, le tout dans un cadre mignon et lumineux.
|
|
|
|
</p>
|
|
|
|
<img src="https://via.placeholder.com/1000x500/82b74b/ffffff?text=Green+Cocooning" alt="Cocooning naturel">
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Content Section -->
|
|
|
|
<section id="conseils">
|
|
|
|
<h2>Nos Conseils pour un Cocooning Mignon et Naturel</h2>
|
|
|
|
<div class="content-container">
|
|
|
|
<div class="box">
|
|
|
|
<img src="https://via.placeholder.com/350x200/82b74b/ffffff?text=Plantes+d%27intérieur" alt="Plantes d'intérieur">
|
|
|
|
<h3>Ajoutez des plantes d'intérieur</h3>
|
|
|
|
<p>Les plantes apportent de la verdure et purifient l'air, créant ainsi un environnement apaisant et mignon.</p>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<img src="https://via.placeholder.com/350x200/82b74b/ffffff?text=Confort+d%27une%20couverture" alt="Couverture confortable">
|
|
|
|
<h3>Investissez dans des textiles naturels</h3>
|
|
|
|
<p>Des couvertures en laine, des coussins en coton bio et des tapis en jute ajoutent du confort à votre espace.</p>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<img src="https://via.placeholder.com/350x200/82b74b/ffffff?text=Ambiance+apaisante" alt="Ambiance apaisante">
|
|
|
|
<h3>Créez une ambiance douce et apaisante</h3>
|
|
|
|
<p>Optez pour des éclairages doux et des bougies naturelles pour une atmosphère relaxante et kawaii.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Eco-friendly Products Section -->
|
|
|
|
<section id="produits">
|
|
|
|
<h2>Nos Produits Écologiques</h2>
|
|
|
|
<div class="content-container">
|
|
|
|
<div class="box">
|
|
|
|
<h3>Plantes en Pot</h3>
|
|
|
|
<p>Découvrez notre collection de plantes d'intérieur pour un cadre plus vert et sain.</p>
|
|
|
|
<a href="#">Voir les produits</a>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<h3>Textiles Naturels</h3>
|
|
|
|
<p>Des coussins, couvertures et rideaux en matériaux organiques et durables.</p>
|
|
|
|
<a href="#">Voir les produits</a>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<h3>Décoration Écologique</h3>
|
|
|
|
<p>Des objets décoratifs en bois recyclé, en bambou et en matériaux naturels.</p>
|
|
|
|
<a href="#">Voir les produits</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
<footer id="contact">
|
|
|
|
<p>Green Cocooning - Tous droits réservés | Contactez-nous : info@greencocooning.com</p>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|