Upload files to "/"

This commit is contained in:
2026-01-14 00:36:50 +01:00
commit b0095568d9
5 changed files with 345 additions and 0 deletions

58
contact.html Normal file
View File

@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>ImmersiHome — Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div class="nav-container">
<img src="./assets/logo.png" class="logo" alt="ImmersiHome">
<span class="logo-tagline">Limmobilier en immersion</span>
<nav id="nav">
<a href="./index.html">Accueil</a>
<a href="./features.html">Fonctionnalités</a>
<a href="./pricing.html">Tarifs</a>
<a href="./team.html">Équipe</a>
<a href="./contact.html">Contact</a>
</nav>
<button id="burger"></button>
</div>
</header>
<section class="section light">
<div class="container">
<h1>Contactez-nous</h1>
<div class="cards">
<div class="card">
<h3>Coordonnées</h3>
<p>📍 12 rue de lInnovation, 75000 Paris</p>
<p>📞 01 84 60 32 10</p>
<p>✉️ contact@immersihome.fr</p>
</div>
<div class="card">
<h3>Formulaire</h3>
<form>
<input type="text" placeholder="Nom" required><br><br>
<input type="email" placeholder="Email" required><br><br>
<textarea placeholder="Votre message" rows="5"></textarea><br><br>
<button class="btn primary" type="submit">Envoyer</button>
</form>
<p style="font-size: 0.9em; opacity: 0.7;">* formulaire fictif (projet pédagogique)</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<p>© 2026 ImmersiHome — SAE — Groupe 8</p>
<img src="assets/logo-iut.png" alt="Logo IUT" style="height:40px;">
</footer>
<script src="./script.js"></script>
</body>
</html>