diff options
author | Bradley Taunt <bt@btxx.org> | 2024-02-08 10:46:38 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-02-08 10:46:38 -0500 |
commit | 8eefb02eddbafb196ce664ec051c2d014f53e0b8 (patch) | |
tree | 1678afcfa8883dd0ff03094cf959cbf276bcf970 /members.html | |
parent | c0d7f4e93de3a77c3a12b89c43f4acfc4bf3a621 (diff) |
Remove stylesheet, update all pages to be valid XHTML
Diffstat (limited to 'members.html')
-rw-r--r-- | members.html | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/members.html b/members.html index 7dc1195..e2423b9 100644 --- a/members.html +++ b/members.html @@ -1,25 +1,26 @@ -<html lang="en"> +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>XHTML Club - Member List</title> - <link rel="shortcut icon" href="/favicon.png"> - <link rel="stylesheet" href="style.css"> + <link rel="shortcut icon" href="/favicon.png"/> </head> <body> <h1>XHTML Club</h1> - <h2>E<u>x</u>treme <u>H</u>yper<u>T</u>ext <u>M</u>ovement for <u>L</u>uddites</h2> - <nav> + <h2 style="font-weight:normal;">E<b>x</b>treme <b>H</b>yper<b>T</b>ext <b>M</b>ovement for <b>L</b>uddites</h2> + <div id="nav"> <ul> <li><a href="/"><b>Home</b></a></li> <li><a href="./members.html">Members</a></li> </ul> - </nav> + </div> <h2>XHTML Members:</h2> - <p><strong>How to submit:</strong> + <p><strong>How to submit:</strong></p> <ol> - <li>Just <a href="mailto:xhtml-club@patches.btxx.org">shoot me an email</a> with "[XHTML Club] submitted URL" as the subject line.<br> (<small>Multiple website submissions can just be included within the email body.</small>)</li><br> - <li>Feel free to toss a small <a href="https://btxx.org/pizza">donation</a> my way if you feel like it was worth it <br> (<small>This is entirely optional - only do so if you're feeling generous!</small>)</li> + <li>Just <a href="mailto:xhtml-club@patches.btxx.org">shoot me an email</a> with "[XHTML Club] submitted URL" as the subject line.<br/> (<small>Multiple website submissions can just be included within the email body.</small>)</li> + <li>Feel free to toss a small <a href="https://btxx.org/pizza">donation</a> my way if you feel like it was worth it <br/> (<small>This is entirely optional - only do so if you're feeling generous!</small>)</li> </ol> <p>Current websites that are <em>fairly</em> close to being pure HTML (the rules are a little loose here):</p> <ul> @@ -75,12 +76,17 @@ <li><a href="https://robertblinov.net/">robertblinov.net</a></li> <li><a href="https://storin.nl/">storin.nl</a></li> </ul> - <footer> + <div id="footer"> <h3>Support XHTML</h3> <p>All content posted on this website will always remain free to everyone. No pay-walls, obtrusive ads or annoying tracking cookies. Basically zero bullshit or fluff. If you feel like you would like to support my efforts in continuously posting free (<em>and hopefully interesting</em>) content, then please consider <a href="https://btxx.org/pizza">donating</a>.</p> <h3>Colophon</h3> - <p>This website is hand-coded with vanilla HTML and hosted with <a href="https://nearlyfreespeech.net">NearlyFreeSpeech</a>. Reach out on <a rel="me" href="https://mastodon.bsd.cafe/@bt">Mastodon</a></p> - </footer> + <p>This website is hand-coded with valid XHTML and hosted with <a href="https://nearlyfreespeech.net">NearlyFreeSpeech</a>. Reach out on <a rel="me" href="https://mastodon.bsd.cafe/@bt">Mastodon</a></p> + <p> + <a href="https://validator.w3.org/check?uri=https%3A%2F%2Fxhtml.club%2Fmembers.html"> + <img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" /> + </a> + </p> + </div> </body> </html> |