]> git.f4mnq.fr Git - site-web-pro.git/commitdiff
Site web basique
authorAmélia Coutard-Sander <git@f4mnq.fr>
Wed, 7 Jan 2026 14:34:55 +0000 (15:34 +0100)
committerAmélia Coutard-Sander <git@f4mnq.fr>
Wed, 7 Jan 2026 14:34:55 +0000 (15:34 +0100)
f4mnq/index.html
f4mnq/style.css

index d8acdb8f722970d0c116479a6231d2c5e4a388f4..76caabb7abcf3b8610fc58f62e301daa72a2a3be 100644 (file)
@@ -1,12 +1,23 @@
 <!DOCTYPE html>
 <html>
 <head>
+       <meta charset="UTF-8" />
        <link rel="stylesheet" href="/style.css" />
 </head>
 <body>
-       <div id="content">
-               Some future content.
-       </div>
-       <iframe id="mpring" src="https://mpring.f4mnq.fr/ring.html" title="Webring amical" width=200px height=80px></iframe>
+<div id="content">
+       <p> Bonjour ! Ici Amélia Coutard-Sander, aka F4MNQ, une étudiante (et
+       future chercheuse si tout se passe bien) en informatique. </p>
+
+       <p> Vous pouvez trouver certains de mes projets dans les dépôts git
+       <a href="https://git.f4mnq.fr/">ci-joints</a>. </p>
+
+       <p> Il est possible de me contacter par mail à l'adresse
+       "contact AROBASE &lt;le domaine de ce site&gt; (f4[···].fr)". </p>
+
+       <p> En bas de cette page est un webring avec mes ami·e·s et mes
+       camarades d'informatique. </p>
+</div>
+<iframe id="mpring" src="https://mpring.f4mnq.fr/ring.html" title="Webring amical" width=200px height=80px></iframe>
 </body>
 </html>
index 2eafbd4052d351d6f8ebaeb1473356c7917689f1..ef8a26eee74d30836c0f968b5d32bcc76320ac18 100644 (file)
@@ -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);
 }