mirror of
https://github.com/danbulant/1mb-club
synced 2026-06-18 22:11:04 +00:00
131 lines
5.5 KiB
HTML
131 lines
5.5 KiB
HTML
---
|
|
layout: default
|
|
title: 1MB Club
|
|
summary: Listing all websites under 1MB in total size
|
|
---
|
|
|
|
<header>
|
|
<h1>1MB Club</h1>
|
|
<p>The internet has become a <em>bloated mess</em>. Massive JavaScript libraries. Countless client-side queries. Overly complex frontend frameworks.</p>
|
|
<p>These things are a <strong>cancerous growth</strong> on the web.</p>
|
|
<p>But we can make a difference - no matter how small it may seem. <em>1MB Club</em> is a growing collection of performance-focused web pages found across the internet.</p>
|
|
<p><strong>The two rules for a web page to qualify as a member:</strong></p>
|
|
<ol>
|
|
<li>Total website size (not <i>just</i> transferred data) must not exceed 1 megabyte</li>
|
|
<li>The website must contain a reasonable amount of content / usefulness in order to be added - no sites with a simple line of text, etc.</li>
|
|
</ol>
|
|
<hr>
|
|
<details>
|
|
<summary><strong>How can I submit a website?</strong></summary>
|
|
<p>Please follow the instructions on the main <a target="_blank" href="https://github.com/bradleytaunt/1mb-club">Github project repo</a>.</p>
|
|
</details>
|
|
<hr>
|
|
<details>
|
|
<summary><strong>How can I help support this project?</strong></summary>
|
|
<p>If you are feeling generous, I would greatly appreciate any donations to help support the site.</p>
|
|
<ol>
|
|
<li>XMR: <pre><code>84Pd48H5qSX2B5bBy881A73KmgdQxmRPg9pQ9faftMWEfRpQmbesiishjnYBhRy5dj6No8a1ksCYpdPbiypWxdMw3GD5zwD</code></pre></li>
|
|
<li>BTC: <pre><code>3JGsvjgxamQHi4VCALER4rXvnvzdWUaQGg</code></pre></li>
|
|
<li>ETH: <pre><code>0x5a0c2841aa63c8abd5ee9b9bd67092ecb55221c2</code></pre></li>
|
|
<li>BCH: <pre><code>pze5vzlh7hv9lrdj6s0q2t20ylzp7uvpvc69jkpdsw</code></pre></li>
|
|
<li>Or simply <a href="https://www.buymeacoffee.com/WQTMtn7ir">buy me a coffee</a></li>
|
|
</ol>
|
|
</details>
|
|
<hr>
|
|
<details>
|
|
<summary><strong>Looking for a <i>more extreme</i> club?</strong></summary>
|
|
<p>Take a look and checkout the even more exclusive membership collection at the <a href="https://xhtml.club">XHTML Club</a>.</p>
|
|
</details>
|
|
<hr>
|
|
<br>
|
|
</header>
|
|
|
|
<main>
|
|
<h2>Official Members</h2>
|
|
<span>Jump to: </span>
|
|
<a href="#50"><50KB</a><span> · </span>
|
|
<a href="#100"><100KB</a><span> · </span>
|
|
<a href="#250"><250KB</a><span> · </span>
|
|
<a href="#512"><512KB</a><span> · </span>
|
|
<a href="#700"><700KB</a><span> · </span>
|
|
<a href="#1000"><em>Just Under</em> 1MB</a>
|
|
<hr><br>
|
|
<table>
|
|
<thead align="left">
|
|
<tr>
|
|
<th>URL</th>
|
|
<th align="right">Size (KB)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% assign site_items = site.site_listings | sort: 'size' %}
|
|
<tr><td><br></td><td><br></td></tr>
|
|
<tr class="size-section"><td id="50"><50KB</td><td></td></tr>
|
|
{% for item in site_items %}
|
|
{% if item.size <= 50 %}
|
|
<tr>
|
|
<td><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
|
|
<td align="right"><span>{{ item.size }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<tr><td><br></td><td><br></td></tr>
|
|
<tr class="size-section"><td id="100"><100KB</td><td></td></tr>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 50.1 and item.size <=100 %}
|
|
<tr>
|
|
<td><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
|
|
<td align="right"><span>{{ item.size }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<tr><td><br></td><td><br></td></tr>
|
|
<tr class="size-section"><td id="250"><250KB</td><td></td></tr>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 100.1 and item.size <=250 %}
|
|
<tr>
|
|
<td><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
|
|
<td align="right"><span>{{ item.size }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<tr><td><br></td><td><br></td></tr>
|
|
<tr class="size-section"><td id="512"><512KB</td><td></td></tr>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 250.1 and item.size <=512 %}
|
|
<tr>
|
|
<td><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
|
|
<td align="right"><span>{{ item.size }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<tr><td><br></td><td><br></td></tr>
|
|
<tr class="size-section"><td id="700"><700KB</td><td></td></tr>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 512.1 and item.size <=700 %}
|
|
<tr>
|
|
<td><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
|
|
<td align="right"><span>{{ item.size }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<tr><td><br></td><td><br></td></tr>
|
|
<tr class="size-section"><td id="1000"><i>Just Under</i> 1MB</td><td></td></tr>
|
|
{% for item in site_items %}
|
|
{% if item.size >= 700.1 and item.size <=1000 %}
|
|
<tr>
|
|
<td><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></td>
|
|
<td align="right"><span>{{ item.size }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
<br>
|
|
<hr>
|