Add initial bare bones website

This commit is contained in:
Spencer Killen 2026-05-11 13:43:57 -06:00
commit f8764ff86b
Signed by: sjkillen
GPG key ID: 1DAA9D8D7C6ADD05
3 changed files with 24 additions and 0 deletions

BIN
www/banner.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

21
www/index.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Libre Internet Club</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="banner">
<img src="banner.gif" />
</div>
@ University of Alberta
<ul>
<li><a href="https://discord.gg/U9MQTv952">Join Discord</a></li>
<li><a href="https://matrix.to/#/#Libre_Internet:matrix.org">Matrix</a></li>
</ul>
<h2>
Members
</h2>
<ul><a href="https://sjkillen.ca">Spencer</a></ul>
</body>
</html>

3
www/style.css Normal file
View file

@ -0,0 +1,3 @@
#banner img {
width: 100%;
}