From 5fb2afa6d302e828185b44247f35fd13468caea8 Mon Sep 17 00:00:00 2001 From: enzo Date: Thu, 16 Oct 2025 15:01:10 +0200 Subject: [PATCH] save files --- .idea/.gitignore | 8 +++++++ .idea/Cv_html.iml | 8 +++++++ .idea/modules.xml | 8 +++++++ .idea/php.xml | 19 ++++++++++++++++ .idea/vcs.xml | 7 ++++++ cv.html | 57 ++++++++++++++++++++++++++++++++++++++++++++++ php pdo.php | 6 +++++ style.css | 58 +++++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 171 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/Cv_html.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml create mode 100644 cv.html create mode 100644 php pdo.php create mode 100644 style.css diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -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 diff --git a/.idea/Cv_html.iml b/.idea/Cv_html.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/Cv_html.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..d813ab3 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..f324872 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..288b36b --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/cv.html b/cv.html new file mode 100644 index 0000000..9d39aa9 --- /dev/null +++ b/cv.html @@ -0,0 +1,57 @@ + + + + + + Cv - Curriculum Vitae + + + +
+
+

Enzo Lopez

+

Etudiant en Ciel

+
+
+ +
+
+

Mail:enzo44814@gmail.com

+

Numero de telephone:0783234286

+

+
+
+
+

COMPETENCE

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/php pdo.php b/php pdo.php new file mode 100644 index 0000000..4863909 --- /dev/null +++ b/php pdo.php @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..a267fd7 --- /dev/null +++ b/style.css @@ -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; +}