save files

This commit is contained in:
enzo
2025-10-16 15:01:10 +02:00
parent db5014d66d
commit 5fb2afa6d3
8 changed files with 171 additions and 0 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

8
.idea/Cv_html.iml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Cv_html.iml" filepath="$PROJECT_DIR$/.idea/Cv_html.iml" />
</modules>
</component>
</project>

19
.idea/php.xml generated Normal file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MessDetectorOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCSFixerOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCodeSnifferOptionsConfiguration">
<option name="highlightLevel" value="WARNING" />
<option name="transferred" value="true" />
</component>
<component name="PhpStanOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PsalmOptionsConfiguration">
<option name="transferred" value="true" />
</component>
</project>

7
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

57
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>

6
php pdo.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
$connexion = new PDO(
'mysql:host=localhost; dbname=nomBDD',
'nom_utilisateur',
'mot_passe');
?>

58
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;
}