commit
f12b1c5f2a
@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Contact - 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="projets.html">Projets</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
<div class="contact-content">
|
||||
<section class="card cv">
|
||||
<h2>Télécharger mon CV</h2>
|
||||
<a href="cv_etienne_veau.pdf" class="btn" target="_blank">Télécharger</a>
|
||||
</section>
|
||||
|
||||
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Projets - 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="projets.html">Projets</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
<h2>Mes Projets</h2>
|
||||
|
||||
<div class="projets-grid">
|
||||
<div class="card projet">
|
||||
<h3>Gestion des stages (C)</h3>
|
||||
<p>Application console pour la gestion des stages</p>
|
||||
<ul>
|
||||
<li>Manipulation de fichiers</li>
|
||||
<li>Structures de données complexes</li>
|
||||
<li>Note : 10.5/20</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="card projet">
|
||||
<h3>Portfolio (Web)</h3>
|
||||
<p>Site web personnel avec formulaire de contact</p>
|
||||
<ul>
|
||||
<li>HTML/CSS/PHP/JavaScript</li>
|
||||
<li>Design responsive</li>
|
||||
<li>Note : 15.5/20</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,138 @@
|
||||
/* Reset et base */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', sans-serif;
|
||||
line-height: 1.6;
|
||||
background-color: #1a1a1a;
|
||||
color: #e6e6e6;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
nav {
|
||||
background-color: #2d2d2d;
|
||||
padding: 1rem;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
nav a {
|
||||
color: #e6e6e6;
|
||||
text-decoration: none;
|
||||
padding: 0.5rem 1rem;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
color: #7e7e7e;
|
||||
}
|
||||
|
||||
/* Conteneur principal */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 6rem auto 2rem;
|
||||
padding: 0 1.5rem;
|
||||
}
|
||||
|
||||
/* Cartes */
|
||||
.card {
|
||||
background-color: #2d2d2d;
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
/* Grilles */
|
||||
.grid-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
/* Qualifications */
|
||||
.qualite {
|
||||
margin-bottom: 1rem;
|
||||
padding: 1rem;
|
||||
background-color: #333;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* Timeline */
|
||||
.timeline-item {
|
||||
padding: 1.5rem;
|
||||
border-left: 3px solid #8d9093;
|
||||
margin-bottom: 2rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.timeline-item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -8px;
|
||||
top: 0;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: #8a8e91;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* Formulaire */
|
||||
.form-group {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
input,
|
||||
textarea {
|
||||
width: 100%;
|
||||
padding: 0.5rem;
|
||||
background-color: #333;
|
||||
border: 1px solid #444;
|
||||
color: #fff;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 0.5rem 1.5rem;
|
||||
background-color: #bbbcbd;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
margin-bottom: 5%;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.grid-container {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.container {
|
||||
margin-top: 8rem;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue