thanks chatgpt

This commit is contained in:
2025-09-22 17:08:17 +02:00
parent 7d9985441f
commit 93757041d7
2 changed files with 183 additions and 3 deletions

76
cv.html
View File

@@ -1,10 +1,80 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="fr">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>CV Samy</title> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV - [Ton Nom]</title>
<link rel="stylesheet" href="styleCV.css">
</head> </head>
<body> <body>
<div class="cv-container">
<aside class="sidebar">
<div class="profile-pic">
<!-- Optionnel : <img src="photo.jpg" alt="Photo de profil"> -->
</div>
<h1 class="name">[Ton Nom]</h1>
<p class="job-title">[Poste recherché]</p>
<section class="contact">
<h2>Contact</h2>
<ul>
<li>Email : [Ton Email]</li>
<li>Téléphone : [Ton Téléphone]</li>
<li>LinkedIn : [Lien]</li>
</ul>
</section>
<section class="skills">
<h2>Compétences</h2>
<ul>
<li>[Compétence 1]</li>
<li>[Compétence 2]</li>
<li>[Compétence 3]</li>
</ul>
</section>
<section class="languages">
<h2>Langues</h2>
<ul>
<li>[Langue 1] - [Niveau]</li>
<li>[Langue 2] - [Niveau]</li>
</ul>
</section>
<section class="interests">
<h2>Centres dintérêt</h2>
<ul>
<li>[Intérêt 1]</li>
<li>[Intérêt 2]</li>
</ul>
</section>
</aside>
<main class="main-content">
<section class="summary">
<h2>Profil</h2>
<p>Professionnel(le) dans [ton domaine] avec [nombre] années dexpérience. Spécialisé(e) en [spécialités], motivé(e), rigoureux(se) et prêt(e) à relever de nouveaux défis.</p>
</section>
<section class="experience">
<h2>Expérience</h2>
<div class="item">
<h3>[Poste] - [Entreprise]</h3>
<span class="date">[Dates]</span>
<p>[Description de lexpérience, missions principales]</p>
</div>
<!-- Ajouter d'autres expériences -->
</section>
<section class="education">
<h2>Formation</h2>
<div class="item">
<h3>[Diplôme] - [École]</h3>
<span class="date">[Dates]</span>
<p>[Détails ou spécialisation]</p>
</div>
</section>
</main>
</div>
</body> </body>
</html> </html>

110
styleCV.css Normal file
View File

@@ -0,0 +1,110 @@
/* style.css */
/* Reset de base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
/* Conteneur principal */
.cv-container {
display: flex;
max-width: 1000px;
margin: 40px auto;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Barre latérale gauche */
.sidebar {
width: 30%;
background-color: #2c3e50;
color: white;
padding: 30px 20px;
}
.sidebar h1.name {
font-size: 24px;
margin-bottom: 5px;
}
.sidebar .job-title {
font-size: 16px;
margin-bottom: 20px;
font-style: italic;
}
.sidebar h2 {
font-size: 16px;
margin-top: 20px;
border-bottom: 1px solid #7f8c8d;
padding-bottom: 5px;
}
.sidebar ul {
list-style: none;
padding: 0;
margin-top: 10px;
}
.sidebar ul li {
margin-bottom: 10px;
font-size: 14px;
}
/* Partie principale */
.main-content {
width: 70%;
padding: 30px;
}
.main-content h2 {
font-size: 20px;
margin-bottom: 10px;
border-bottom: 2px solid #3498db;
padding-bottom: 5px;
color: #2c3e50;
}
.main-content .item {
margin-bottom: 20px;
}
.main-content h3 {
font-size: 16px;
margin-bottom: 5px;
color: #34495e;
}
.date {
font-size: 14px;
color: #999;
}
p {
margin-top: 5px;
font-size: 15px;
}
/* Responsive */
@media (max-width: 768px) {
.cv-container {
flex-direction: column;
}
.sidebar, .main-content {
width: 100%;
}
.sidebar {
text-align: center;
}
}