62 lines
2.6 KiB
PHP
62 lines
2.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<title>Contact | Don't meet me</title>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<link rel="stylesheet" class="css" type="text/css" href="styles/today/main.css"/>
|
|
<link rel="stylesheet" class="css" type="text/css" href="styles/today/contact.css"/>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap" rel="stylesheet">
|
|
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
|
|
|
|
<script src="js/nav.js" defer></script>
|
|
<script src="js/themeManager.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<?php include("header.php") ?>
|
|
<main>
|
|
<h1>Notre équipe de spécialistes</h1>
|
|
<section id="devs">
|
|
<!-- Fred -->
|
|
<section class="contactprofile">
|
|
<a href="mailto:frederic.egenscheviller@etu.univ-amu.fr" class="tuile">
|
|
<img src="img/profils/fred.jpg" alt="fred" class="profilsimg">
|
|
<p>Frédéric EGENSCHEVILLER</p>
|
|
</a>
|
|
</section>
|
|
<!-- Marius -->
|
|
<section class="contactprofile">
|
|
<a href="mailto:marius.pistoresi@etu.univ-amu.fr" class="tuile">
|
|
<img src="img/profils/marius.jpg" alt="marius" class="profilsimg">
|
|
<p>Marius PISTORESI</p>
|
|
</a>
|
|
</section>
|
|
<!-- Lucas -->
|
|
<section class="contactprofile">
|
|
<a href="mailto:lucas.fabre@etu.univ-amu.fr" class="tuile">
|
|
<img src="img/profils/lucas.jpg" alt="lucas" class="profilsimg">
|
|
<p>Lucas FABRE</p>
|
|
</a>
|
|
</section>
|
|
<!-- Djalim -->
|
|
<section class="contactprofile">
|
|
<a href="mailto:djalim.simaila@etu.univ-amu.fr" class="tuile">
|
|
<img src="img/profils/djalim.jpg" alt="djalim" class="profilsimg">
|
|
<p>Djalim SIMAILA</p>
|
|
</a>
|
|
</section>
|
|
<!-- Thomas -->
|
|
<section class="contactprofile">
|
|
<a href="mailto:thomas.rubini@etu.univ-amu.fr" class="tuile">
|
|
<img src="img/profils/thomas.jpg" alt="thomas" class="profilsimg">
|
|
<p>Thomas RUBINI</p>
|
|
</a>
|
|
</section>
|
|
</section>
|
|
<h2 id="review">N'hesitez pas a nous faire part de votre avis !</h2>
|
|
</main>
|
|
<?php include("footer.php") ?>
|
|
</body>
|