From de7b3bf82fd41e3359d02b46733d5576f6db770d Mon Sep 17 00:00:00 2001 From: Ricsimo237 <eric.simokouche@student.uclouvain.be> Date: Sun, 23 Feb 2025 23:56:22 +0100 Subject: [PATCH] Ajout d'une feuille de style, etablissement de liaison avec la page index.html --- index.html | 1 + style.css | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 style.css diff --git a/index.html b/index.html index bb1c77c..9fc69c9 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> + <link rel="stylesheet" href="style.css"> </head> <body> Bonjour diff --git a/style.css b/style.css new file mode 100644 index 0000000..d53482a --- /dev/null +++ b/style.css @@ -0,0 +1,5 @@ +body { + text-align: center; + background-color: #eeeeee; +} + -- GitLab