initial commit
This commit is contained in:
22
about.html
Normal file
22
about.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>NetBSD!</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="netbsdclub.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="hero">
|
||||
<h1>About netbsd.club</h1>
|
||||
<p style="width: 300px">
|
||||
Netbsd.club is a collective of desert island tech-junkies. Desert island meaning
|
||||
technology you'd like to have on a desert island. Obviously, we enjoy NetBSD, but we also
|
||||
love Perl, C, Raku, Lisps, and much more.
|
||||
</p>
|
||||
<p>
|
||||
Our goal is to build useful software for and around said technologies, and provide it to end users;
|
||||
completely free of charge. You can see a list of our projects [ <a href="https://codeberg.org/netbsd-club">here</a> ].
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
18
index.html
Normal file
18
index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>NetBSD!</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="netbsdclub.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="hero">
|
||||
<img src="netbsd.png" alt="netbsd" />
|
||||
<div class="links">
|
||||
[ <a href="news">news</a> ] -
|
||||
[ <a href="https://codeberg.org/netbsd-club">projects</a> ] -
|
||||
[ <a href="about.html">about</a> ]
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
netbsd.png
Normal file
BIN
netbsd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 460 B |
22
netbsdclub.css
Normal file
22
netbsdclub.css
Normal file
@@ -0,0 +1,22 @@
|
||||
body {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-color: black;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
div.links a {
|
||||
color: #bb0000;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
color: #bb0000;
|
||||
}
|
||||
|
||||
p {
|
||||
color: lightgray;
|
||||
}
|
||||
Reference in New Issue
Block a user