Files
sae-site-web/pricing.html

66 lines
1.7 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 — Tarifs</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>Nos offres</h1>
<div class="cards">
<div class="card">
<h3>Découverte</h3>
<p>19€/mois</p>
<p>3 visites VR / mois</p>
<a href="commande.html?offre=decouverte" class="btn primary">
Commander
</a>
</div>
<div class="card">
<h3>Pro</h3>
<p>79€/mois</p>
<p>Accès illimité + casque</p>
<a href="commande.html?offre=pro" class="btn primary">
Commander
</a>
</div>
<div class="card">
<h3>Agence</h3>
<p>149€/mois</p>
<p>Pack multi-casques</p>
<a href="commande.html?offre=agence" class="btn primary">
Commander
</a>
</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>