30 lines
597 B
HTML
30 lines
597 B
HTML
|
<!DOCTYPE html>
|
||
|
<!--
|
||
|
Nicola Clark
|
||
|
04APR25
|
||
|
-->
|
||
|
<!--
|
||
|
Adapted from https://javascript30.com - Sorting band names without articles
|
||
|
|
||
|
Changes:
|
||
|
* moved CSS + JS to external files
|
||
|
-->
|
||
|
<!--
|
||
|
New elements:
|
||
|
New attributes:
|
||
|
New JS:
|
||
|
* JSDoc - I missed having type-based completions in VScode from TypeScript
|
||
|
-->
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Sort Without Articles</title>
|
||
|
<link rel="icon" href="https://fav.farm/🔥">
|
||
|
<link rel="stylesheet" href="asset/main.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<ul id="bands"></ul>
|
||
|
<script src="asset/main.js"></script>
|
||
|
</body>
|
||
|
</html>
|