generated from Templates_CodeFirst/templateHtmlCss
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
3.3 KiB
75 lines
3.3 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact</title>
|
|
<link rel="stylesheet" href="site.css">
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<header class="bandeau">
|
|
<div class="photo_titre_bandeau">
|
|
<img src="image/user_arpoulain.jpeg" alt="photo" class="image_accueil">
|
|
<h1 style="margin-left: 10px; margin-top: 40px; margin-right: 10px; text-decoration: underline;">
|
|
<a href="index.html">Poulain <br> Arsène</a>
|
|
</h1>
|
|
</div>
|
|
<nav id="bouttons_liens_nav" class="dropdown-nav">
|
|
<button class="dropdown-toggle" aria-label="Menu">☰ Menu</button>
|
|
<div class="dropdown-menu">
|
|
<a href="Projets.html" class="bouttons_liens"><strong>Projets</strong></a>
|
|
<a href="Apropos.html" class="bouttons_liens"><strong>A propos</strong></a>
|
|
<a href="Competences.html" class="bouttons_liens"><strong>Compétences</strong></a>
|
|
<a href="contact.html" class="bouttons_liens"><strong>Contact</strong></a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="background">
|
|
|
|
</div>
|
|
|
|
<section class="container">
|
|
<h1 style="text-align: center;">Contactez-moi</h1>
|
|
<div class="contact-section">
|
|
<p>Vous pouvez me joindre via les informations ci-dessous :</p>
|
|
|
|
<ul>
|
|
<li>Email : <a href="mailto:arsenepoulain6@gmail.com">arsenepoulain6@gmail.com</a></li>
|
|
<li>Téléphone : +33 6 82 59 63 94</li>
|
|
</ul>
|
|
|
|
<h2 class="cv-title">Mon CV</h2>
|
|
<div class="cv-container">
|
|
<!-- Le lien doit inclure l'image comme enfant direct -->
|
|
<a href="cv/cv_alternance_Poulain_Arsene.pdf" download="cv_alternance_Poulain_Arsene.pdf">
|
|
<img src="cv/cv.png" alt="Aperçu du CV" class="cv-preview">
|
|
</a>
|
|
<p class="cv-download-text">Cliquez sur l'image pour télécharger mon CV.</p>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<footer class="basPage">
|
|
<p>© 2025 Poulain Arsène. Tous droits réservés.</p>
|
|
</footer>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const toggle = document.querySelector('.dropdown-toggle');
|
|
const menu = document.querySelector('.dropdown-menu');
|
|
if (toggle && menu) {
|
|
toggle.addEventListener('click', function() {
|
|
menu.classList.toggle('show');
|
|
});
|
|
document.addEventListener('click', function(e) {
|
|
if (!toggle.contains(e.target) && !menu.contains(e.target)) {
|
|
menu.classList.remove('show');
|
|
}
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |