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.
54 lines
1.7 KiB
54 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CV- Etienne Veau</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">À propos</a></li>
|
|
<li><a href="cursus.html">Cursus</a></li>
|
|
<li><a href="competences.html">Compétences/Qualités</a></li>
|
|
|
|
<li><a href="projets.html">Projets</a></li>
|
|
<li><a href="exppro.html">Expériences professionnelles</a></li>
|
|
|
|
<li><a href="cv.html">Mon CV</a></li>
|
|
<li><a href="contact.html">Me Contacter</a></li>
|
|
</ul>
|
|
<button class="hamburger">☰</button>
|
|
</nav>
|
|
|
|
<div class="container contact-container">
|
|
<section class="cv-preview">
|
|
<img src="CV-Veau_Etienne-Alternance.png" alt="Aperçu CV Etienne Veau" class="cv-image">
|
|
<a href="CV-Veau_Etienne-Alternance.pdf" class="btn download-btn" download>
|
|
Télécharger mon CV
|
|
</a>
|
|
</section>
|
|
</div>
|
|
|
|
<script>
|
|
const hamburger = document.querySelector('.hamburger');
|
|
const navMenu = document.querySelector('nav ul');
|
|
|
|
hamburger.addEventListener('click', () => {
|
|
navMenu.classList.toggle('active');
|
|
hamburger.setAttribute('aria-expanded', navMenu.classList.contains('active'));
|
|
});
|
|
|
|
document.querySelectorAll('nav a').forEach(link => {
|
|
link.addEventListener('click', () => {
|
|
navMenu.classList.remove('active');
|
|
hamburger.setAttribute('aria-expanded', 'false');
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |