From: Max Charrier Date: Sat, 19 Apr 2025 11:21:31 +0000 (+0200) Subject: Conforming to Nu Html Checker X-Git-Tag: 25w17a~16 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=22ad69583210106dd93d934a5b2f87b4b9c0f5b7;p=max%2Fwww.git Conforming to Nu Html Checker Fix element a/button must not appear as a descendant of button/a element. Use only a element with distinct class style Signed-off-by: Max Charrier --- diff --git a/en.html b/en.html index 13665c5..4eb69fe 100644 --- a/en.html +++ b/en.html @@ -16,6 +16,6 @@

Max

Welcome to Deez Nuts!

- + Go back to La France! <- diff --git a/index.html b/index.html index e0909aa..d202baf 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,6 @@

Max

Pain, beurre et confiture

- + -> For the English document diff --git a/stylesheet.css b/stylesheet.css index 9170b68..269ad1c 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -7,10 +7,17 @@ body { h1 { font-size: 4rem; } -button { +.button { position: absolute; top: 20px; right: 40px; font-family: 'comic_monobold', ui-monospace, monospace; font-size: 1.2rem; + display: inline-block; + padding: 10px 20px; + background-color: #5d3a00; + color: #f9ea9a; + text-decoration: none; + border: 1px solid #f98948; + border-radius: 5px; }