-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 33a576e
Showing
4 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Je veux un cadeau</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<img src="logo.png" alt="Logo"> | ||
</header> | ||
|
||
<main> | ||
<section class="image-section"> | ||
<!-- Your image goes here --> | ||
<img src="banner.jpg" alt="Your Image"> | ||
</section> | ||
|
||
<section class="text-section"> | ||
<div> | ||
<p> | ||
Chers amis et précieux clients, | ||
</p> | ||
<p> | ||
L’arrivée de cette nouvelle année marque un tournant pour nous. Avec le cœur rempli de reconnaissance et de réflexion, nous prenons la décision de mettre fin à nos box cadeaux personnalisées. | ||
</p> | ||
<p> | ||
À tous nos clients, un immense merci ! Merci pour votre fidélité et la confiance que vous nous avez accordée. | ||
</p> | ||
<p> | ||
Nous souhaitons également adresser nos remerciements à tous nos partenaires qui ont partagé ce merveilleux parcours avec nous. | ||
</p> | ||
<p> | ||
À nos proches, sans qui rien n’aurait été possible ! Vos conseils, votre soutien indéfectible et vos investissements ont été des piliers essentiels pour nous. | ||
</p> | ||
<p> | ||
Encore une fois, du fond du cœur, merci d’avoir été une part inoubliable de notre aventure. | ||
</p> | ||
<p> | ||
Nos meilleurs vœux pour cette nouvelle année ! | ||
</p> | ||
<p> | ||
Martine et Jennifer ❤️ | ||
</p> | ||
</div> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* Reset default margin and padding */ | ||
body, h1, h2, h3, p, ul, ol { | ||
margin: 0; | ||
padding: 0; | ||
background-color: #F6E3CB; | ||
} | ||
body { | ||
height: 100vh; | ||
} | ||
|
||
/* Style header */ | ||
header { | ||
background-color: #f; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
|
||
header img { | ||
height: 10vh; | ||
} | ||
|
||
/* Style main sections */ | ||
main { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.image-section { | ||
margin-top: 20px; | ||
} | ||
|
||
/* Style image */ | ||
.image-section img { | ||
width: 30vw; /* Adjust image size */ | ||
height: auto; | ||
} | ||
|
||
/* Style text section */ | ||
.text-section { | ||
margin-top: 20px; | ||
text-align: center; | ||
padding-left: 15vw; | ||
padding-right: 15vw; | ||
} | ||
|
||
.text-section p { | ||
font-size: 18px; | ||
color: #333; | ||
} |