exozyme/index.html
Anthony Wang e131dc1110
2024 major cleanup
- Remove FUQs page and move some of the questions to the about or quickstart pages
- Remove info boxes
- Use avif instead of webp images everywhere and keep png/jpg fallbacks
- Add pubkey.asc
- Add id things to all h2
- Convert all h4 headings to h3
- Simplify/fix wording in a lot of places
2024-01-05 00:47:16 +00:00

26 lines
865 B
HTML

<!DOCTYPE html>
<!-- Hello! I hope this HTML is at least mildly readable... -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>exozyme</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="icon" href="img/favicon.png" type="image/png">
</head>
<body>
<picture>
<source srcset="img/logo.avif" type="image/avif">
<source srcset="img/logo.png" type="image/png">
<img src="img/logo.png" alt="The exozyme logo" class="logo">
</picture>
<h1>The exozyme project</h1>
<p class="emoji">🏗️ 💻 👾 📖 🗨️</p>
<p class="links">
<a href="about">About</a>&nbsp;&nbsp;&nbsp;
<a href="quickstart">Quickstart</a>&nbsp;&nbsp;&nbsp;
<a href="explore">Explore</a>
</p>
</body>
</html>