Files
sae-site-web/index.html

51 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>ImmersiHome — Accueil</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 hero">
<div class="container">
<h1>Visitez limmobilier<br>comme si vous y étiez</h1>
<p>ImmersiHome propose des visites VR immersives pour vendre et louer plus vite.</p>
<a href="./pricing.html" class="btn primary">Commander</a>
<a href="./features.html" class="btn outline">Découvrir</a>
<img src="./assets/hero.jpg" alt="Visite VR ImmersiHome">
</div>
</section>
<section class="section dark">
<div class="container">
<h2>Une nouvelle façon de visiter</h2>
<p>Réduisez les déplacements et améliorez la compréhension des espaces.</p>
<img src="./assets/visite.jpg" alt="Immersion VR">
</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>