Skip to content

Commit

Permalink
feat: inital commit
Browse files Browse the repository at this point in the history
  • Loading branch information
loispostula committed Jan 5, 2024
0 parents commit 33a576e
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 0 deletions.
Binary file added banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions index.html
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>
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions styles.css
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;
}

0 comments on commit 33a576e

Please sign in to comment.