32 lines
700 B
HTML
32 lines
700 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
|
|
* Creating a DOM element - not really new, I just forgot how to and had to
|
|
double-check on W3Schools
|
|
-->
|
|
<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>
|