diff --git a/css/CV/MoncefSTITI.css b/css/CV/MoncefSTITI.css new file mode 100644 index 0000000..c0c1a3b --- /dev/null +++ b/css/CV/MoncefSTITI.css @@ -0,0 +1,70 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background-color: #f8f9fa; +} + +.cv-container { + max-width: 800px; + margin: 20px auto; + padding: 20px; + background-color: #fff; + box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); + border-radius: 8px; +} + +header h1 { + color: #007BFF; + text-align: center; +} + +header h2 { + color: #007BFF; + text-align: center; +} + +section { + margin-top: 30px; +} + +.job h3 { + color: #007BFF; +} + +ul { + list-style-type: none; + padding: 0; +} + +.skills ul, +.education ul { + padding-left: 20px; + margin-bottom: 10px; +} + +.skills p, +.education p { + margin-bottom: 10px; +} + +ul, ol { + list-style-type: disc; + padding: 0; +} + +@media print { + body { + width: 21cm; + height: 29.7cm; + margin: 20mm; + } + + .cv-container { + max-width: 100%; + margin: 0; + padding: 0; + box-shadow: none; + border-radius: 0; + } +} diff --git a/css/notre-equipe.css b/css/notre-equipe.css index e69de29..6d7e3d8 100644 --- a/css/notre-equipe.css +++ b/css/notre-equipe.css @@ -0,0 +1,70 @@ +.equipe-section { + margin: 40px 0; +} + +.membre-equipe { + margin-bottom: 40px; + display: flex; + align-items: center; +} + +.membre-equipe h3 { + font-size: 1.5em; + margin-bottom: 10px; +} + +.membre-equipe img { + width: 150px; + height: 150px; + border-radius: 50%; + margin-left: 20px; +} + +.cv-container { + border: 1px solid #ddd; + padding: 15px; +} + +.cv-container h4 { + font-size: 1.2em; + margin-bottom: 10px; +} + +.cv-link { + display: block; + background-color: #ffa319; + color: #fff; + padding: 10px 15px; + text-decoration: none; + margin-top: 10px; +} + +.cv-link:hover { + background-color: #9b620c; +} + +.membre-equipe { + margin-bottom: 40px; + display: flex; + align-items: center; +} + +.membre-equipe img { + width: 150px; + height: 150px; + border-radius: 50%; + margin-right: 20px; +} + +.membre-info { + flex-grow: 1; +} + +.membre-info h3 { + font-size: 1.5em; + margin-bottom: 10px; +} + +.cv-container { + margin-bottom: 25px; +} \ No newline at end of file diff --git a/html/CV/MoncefSTITI.html b/html/CV/MoncefSTITI.html new file mode 100644 index 0000000..006516e --- /dev/null +++ b/html/CV/MoncefSTITI.html @@ -0,0 +1,81 @@ + + + + + + + + CV - Moncef STITI + + + +
+
+

Moncef STITI

+
+ +
+

Formation

+

Première année de Bachelor universitaire de technologie en informatique

+

Baccalauréat général (mention assez bien) spécialités :

+ +

2023 - 2024 | IUT de Fontainebleau

+

2023 | Lycée Durzy (45700 Villemandeur)

+
+ +
+

Informatique

+

Langages :

+ +

Programmation :

+ +

Modélisation et base de données :

+ +

Réalisations :

+ +
+ +
+

Expérience Professionnelle

+
+

Mars 2021 - Février 2022 | Marché de Montargis les dimanches matin

+

Poissonnier / Primeur chargé de la préparation des commandes

+
+
+

Février 2019 | ERAMET Paris 15

+

Stage d'observation d'une semaine

+
    +
  • Observation d’un administrateur réseau
  • +
  • Observation d’une équipe de développeurs web
  • +
  • Observation d’une équipe d’experts en cybersécurité
  • +
+
+

Juillet/Août 2023 | Darty Montargis

+

Conseiller de vente

+
+
+
+ + + diff --git a/html/notre-equipe.html b/html/notre-equipe.html index 8d72026..a23239d 100644 --- a/html/notre-equipe.html +++ b/html/notre-equipe.html @@ -56,6 +56,7 @@

CURRICULUM VITAE

Vous pouvez télécharger le CV de Moncef STITI ci-dessous :

Télécharger le CV + Imprimer le CV
@@ -71,6 +72,7 @@

CURRICULUM VITAE

Vous pouvez télécharger le CV de Marco ORFAO ci-dessous :

Télécharger le CV + Imprimer le CV
@@ -86,6 +88,7 @@

CURRICULUM VITAE

Vous pouvez télécharger le CV de Louay DARDOURI ci-dessous :

Télécharger le CV + Imprimer le CV
@@ -143,7 +146,7 @@ - + diff --git a/img/NotreEquipe/MoncefSTITI.png b/img/NotreEquipe/MoncefSTITI.png new file mode 100644 index 0000000..fc266c8 Binary files /dev/null and b/img/NotreEquipe/MoncefSTITI.png differ diff --git a/js/notre-equipe.js b/js/notre-equipe.js new file mode 100644 index 0000000..6835f3a --- /dev/null +++ b/js/notre-equipe.js @@ -0,0 +1,10 @@ +function printCV(cvUrl) { + var newWindow = window.open(cvUrl, '_blank'); + if (newWindow) { + newWindow.onload = function () { + newWindow.print(); + }; + } else { + alert("Impossible d'ouvrir une nouvelle fenêtre. Veuillez autoriser les nouvelles fenêtres."); + } +}