On a fait le front (a peut près)

This commit is contained in:
Lucàs
2023-12-08 03:57:24 +01:00
parent 26b3d06b46
commit 05f6282791
40 changed files with 826 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noël Écologique</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
background-color: #A3BBAD;
}
h1 {
font-family: 'Manrope', extrabold;
font-size: 64px;
color: white;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
p {
font-size: 18px;
margin-bottom: 30px;
}
#santa {
font-size: 72px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Joyeux Noël Écologique !</h1>
<p>En cette période festive, pensons à la nature et à la durabilité.</p>
<p>Faites un geste écologique pendant les fêtes ! 🌲</p>
<div id="santa" onclick="showEasterEgg()">→ 🎅 ←</div>
<script>
function showEasterEgg() {
alert("Easter Egg : C'est le moment de penser à des cadeaux éco-friendly !");
}
</script>
</body>
</html>