move files cv

This commit is contained in:
enzo
2025-10-16 16:08:44 +02:00
parent 5fb2afa6d3
commit 407f0fb834
2 changed files with 0 additions and 0 deletions

57
cv/cv.html Normal file
View File

@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cv - Curriculum Vitae</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<h1 style="text-align: center; margin-top: 50px;">Enzo Lopez</h1>
<h2 style="text-align: center; margin-top: 10px;">Etudiant en Ciel</h2>
</div>
</header>
<main>
<div class="container">
<p><strong>Mail:</strong>enzo44814@gmail.com</p>
<p><strong>Numero de telephone:</strong>0783234286</p>
<p></p>
</div>
</main>
<div class="skills">
<h3>COMPETENCE</h3>
<ul>
<li>HTML</li>
<li>Cisco Packet Tracer</li>
<li>linux</li>
<li>Docker</li>
</ul>
</div>
</body>
</html>

58
cv/style.css Normal file
View File

@@ -0,0 +1,58 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: auto;
background-color: white;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
h2 {
font-size: 24px;
color: #555;
margin-bottom: 30px;
}
h3 {
font-size: 20px;
color: #222;
margin-top: 40px;
border-bottom: 2px solid #007BFF;
display: inline-block;
padding-bottom: 5px;
}
.skills ul {
list-style-type: none;
padding: 0;
}
.skills li {
background-color: #5ca2ec;
color: white;
padding: 10px;
margin-bottom: 8px;
border-radius: 5px;
width: fit-content;
}
main p {
font-size: 16px;
margin-bottom: 10px;
}
strong {
color: #007BFF;
}