Files
sae-site-web/team.html

76 lines
1.9 KiB
HTML
Raw Permalink 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 — Équipe</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>Notre équipe</h1>
<p>Une équipe pluridisciplinaire au service de limmersion.</p>
<div class="cards">
<div class="card">
<h3>Mathëo Salavin-Moura</h3>
<p>Produit & UX</p>
<a href="cv-matheo.html" class="btn">Voir le CV</a>
</a>
</div>
<div class="card">
<h3>Jordan Aristil</h3>
<p>Business & stratégie</p>
<a href="cv/cv-jordan.pdf" target="_blank" class="btn">
Voir le CV
</a>
</div>
<div class="card">
<h3>Kelyan Pierre-Louis</h3>
<p>Développement technique</p>
<a href="cv/cv-kelyan.pdf" target="_blank" class="btn">
Voir le CV
</a>
</div>
<div class="card">
<h3>Evan Giloppé</h3>
<p>Marketing & communication</p>
<a href="cv/cv-evan.pdf" target="_blank" class="btn">
Voir le CV
</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>