ajout première SAE WEB 1ere année 17/20

This commit is contained in:
EmmanuelTiamzon
2025-12-05 10:29:17 +01:00
parent 936915e585
commit b05817dbcd
42 changed files with 4335 additions and 0 deletions

146
SAE_WEB1/html/cv_josue.html Normal file
View File

@@ -0,0 +1,146 @@
<!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 dun jeu vidéo en Python (2024)</li>
<li><strong>Stage dobservation :</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 dInté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>