aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorBradley Taunt <git@btxx.org>2026-01-21 16:14:18 -0500
committerBradley Taunt <git@btxx.org>2026-01-21 16:14:18 -0500
commitb36bf99a95f54b698aec0a58a4b8059746614049 (patch)
tree3a8783445781b2243b8be78500db8eb29c769b38 /index.html
parent9a1a73e62c89f014170643e6941ae0bb52a5a22c (diff)
Refactor for valid XHTML Strict doctype
Diffstat (limited to 'index.html')
-rw-r--r--index.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/index.html b/index.html
index 27a8744..ce74276 100644
--- a/index.html
+++ b/index.html
@@ -4,17 +4,17 @@ title: A collection of web pages weighing in less than 1MB
summary: Listing all web pages under 1MB in total size
---
-<header>
- <p align="center"><strong>1MB Club</strong> is a growing collection of performance-focused web pages weighing less than 1 megabyte.</p>
-</header>
+<div id="header">
+ <p class="center"><strong>1MB Club</strong> is a growing collection of performance-focused web pages weighing less than 1 megabyte.</p>
+</div>
-<main>
+<div id="main">
{% assign famers = site.site_listings %}
{% assign websites = site.site_listings | sort: 'size' %}
<h2 id="members">Official Members</h2>
- <img class="http-badge" src="/public/http-badge.svg" alt="HTTP badge">
+ <img class="http-badge" src="/public/http-badge.svg" alt="HTTP badge" />
<p>&nbsp;&nbsp;Items marked with this <i>clickable</i> badge support out-of-date browsers via HTTP (<a href="/blog/https-redirects">Why?</a>)</p>
- <hr>
+ <hr/>
<table class="members">
<thead align="left">
<tr>
@@ -28,7 +28,7 @@ summary: Listing all web pages under 1MB in total size
<td>
{% if item.http == true %}
<a href="http://{{ item.pageurl }}">
- <img class="http-badge" src="/public/http-badge.svg" alt="HTTP badge">
+ <img class="http-badge" src="/public/http-badge.svg" alt="HTTP badge" />
</a>&nbsp;
{% endif %}
<a class="site" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a>
@@ -49,6 +49,6 @@ summary: Listing all web pages under 1MB in total size
{% endfor %}
</p>
<p>These 1MB Club members donated to this project and are now immortalized into the "Hall of Fame"</p>
- <p><strong>Looking to join the Hall of Fame?</strong><br><a href="/hall-of-fame">Become a supporter today &rarr;</a></p>
+ <p><strong>Looking to join the Hall of Fame?</strong><br/><a href="/hall-of-fame">Become a supporter today &rarr;</a></p>
</div>
-</main>
+</div>