From: Amélia Coutard-Sander Date: Wed, 7 Jan 2026 14:34:55 +0000 (+0100) Subject: Site web basique X-Git-Url: https://git.f4mnq.fr/?a=commitdiff_plain;h=4ddc3e82def5188a72760407b6ad9091b9d09af1;p=site-web-pro.git Site web basique --- diff --git a/f4mnq/index.html b/f4mnq/index.html index d8acdb8..76caabb 100644 --- a/f4mnq/index.html +++ b/f4mnq/index.html @@ -1,12 +1,23 @@ + -
- Some future content. -
- +
+

Bonjour ! Ici Amélia Coutard-Sander, aka F4MNQ, une étudiante (et + future chercheuse si tout se passe bien) en informatique.

+ +

Vous pouvez trouver certains de mes projets dans les dépôts git + ci-joints.

+ +

Il est possible de me contacter par mail à l'adresse + "contact AROBASE <le domaine de ce site> (f4[···].fr)".

+ +

En bas de cette page est un webring avec mes ami·e·s et mes + camarades d'informatique.

+
+ diff --git a/f4mnq/style.css b/f4mnq/style.css index 2eafbd4..ef8a26e 100644 --- a/f4mnq/style.css +++ b/f4mnq/style.css @@ -1,3 +1,28 @@ +@media (prefers-color-scheme: light) { +body { + background-color: #ffc; + color: #000; +} +a { + color: #099; +} +a:visited { + color: #c3c; +} +} +@media (prefers-color-scheme: dark) { +body { + background-color: #003; + color: #fff; +} +a { + color: #ff9; +} +a:visited { + color: #f99; +} +} + #content { min-height: calc(100vh - 120px); }