146 lines
4.5 KiB
HTML
146 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>CV - Josué</title>
|
||
<style>
|
||
body {
|
||
font-family: Arial, sans-serif;
|
||
margin: 0;
|
||
padding: 0;
|
||
background-color: #f4f4f9;
|
||
color: #333;
|
||
}
|
||
|
||
.container {
|
||
width: 80%;
|
||
margin: 20px auto;
|
||
background: #fff;
|
||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
header {
|
||
background: #007acc;
|
||
color: white;
|
||
padding: 20px 15px;
|
||
text-align: center;
|
||
}
|
||
|
||
header h1 {
|
||
margin: 0;
|
||
font-size: 2rem;
|
||
}
|
||
|
||
header p {
|
||
margin: 5px 0 0;
|
||
font-size: 1rem;
|
||
}
|
||
|
||
section {
|
||
padding: 20px 15px;
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 1.5rem;
|
||
color: #007acc;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.content {
|
||
margin-left: 15px;
|
||
}
|
||
|
||
ul {
|
||
list-style: none;
|
||
padding: 0;
|
||
}
|
||
|
||
ul li {
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.skills span {
|
||
display: inline-block;
|
||
background: #007acc;
|
||
color: white;
|
||
padding: 5px 10px;
|
||
border-radius: 20px;
|
||
margin: 5px 5px 0 0;
|
||
}
|
||
|
||
footer {
|
||
text-align: center;
|
||
background: #333;
|
||
color: white;
|
||
padding: 10px 0;
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
footer a {
|
||
color: #007acc;
|
||
text-decoration: none;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<header>
|
||
<a href="#" OnClick="javascript:window.print()">Imprimer</a>
|
||
<a href="index.html">Josué Konan</a>
|
||
<p> Route Hurbault | 0763732963 | jbtsko77@gmail.com</p>
|
||
<p><a href="https://www.linkedin.com/in/josu%C3%A9-konan-105569347/" style="color: #fff; text-decoration: underline;">LinkedIn</a></p>
|
||
</header>
|
||
|
||
<section>
|
||
<h2 class="section-title">Profil</h2>
|
||
<p>Étudiant motivé et passionné en première année de BUT Informatique. Compétent en programmation et développement web, avec une solide maîtrise de plusieurs langages. Dynamique et curieux, je combine mes compétences techniques avec des qualités interpersonnelles et un goût prononcé pour les nouvelles technologies.</p>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="section-title">Formation</h2>
|
||
<div class="content">
|
||
<ul>
|
||
<li><strong>BUT Informatique</strong> – IUT Sénart site de Fontainebleau (2023 - Présent)</li>
|
||
<li><strong>Baccalauréat Scientifique</strong> – Lycée La Mare Carrée (2023) -</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="section-title">Compétences Techniques</h2>
|
||
<div class="skills">
|
||
<span>C</span> <span>C++</span> <span>Python</span> <span>HTML</span> <span>CSS</span>
|
||
<span>Git</span> <span>Visual Studio Code</span> <span>Anglais (courant)</span>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="section-title">Expériences</h2>
|
||
<div class="content">
|
||
<ul>
|
||
<li><strong>Projet étudiant :</strong> Développement d’un jeu vidéo en Python (2024)</li>
|
||
<li><strong>Stage d’observation :</strong> Initiation à la gestion de bases de données et développement de scripts (2023)</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2 class="section-title">Centres d’Intérêt</h2>
|
||
<div class="content">
|
||
<ul>
|
||
<li>Football (pratique régulière, travail d’équipe)</li>
|
||
<li>Jeux vidéo (game design, optimisation des performances)</li>
|
||
<li>Technologies (veille sur les nouveautés en programmation et IA)</li>
|
||
</ul>
|
||
</div>
|
||
</section>
|
||
|
||
<footer>
|
||
<p>Créé par Konan </p>
|
||
</footer>
|
||
</div>
|
||
</body>
|
||
</html> |