This repository was archived by the owner on Sep 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 2.23 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spaceboards</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="shortcut icon" type="image/jpg" href="assets/images/favicon.ico"/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');
</style>
</head>
<body style="font-family:'Lexend Deca', sans-serif;background-color:#171717;">
<div style="color:121212;background-color:#2d2d2d;">
<div class="d-table mx-auto" style="color:#bcbcbc;padding:5px;">
<h1 class="text-center" style="padding:5px;"><a class="mynav" href="./">Spaceboards</a></h1>
<div class="table-responsive d-table" style="max-width:25%;">
<table class="table table-sm">
<tbody>
<tr>
<td class="cell"><a class="mynav" href="./hardware" target="_self">Hardware</a></td>
<td class="cell"><a class="mynav" href="./software" target="_self">Software</a></td>
<td class="cell"><a class="mynav" href="./contact" target="_self">Contact</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="d-flex" style="margin:auto;max-width:800px;padding:15px;">
<div class="card" style="color:#363636;">
<div class="card-body" style="background-color:#2d2d2d;color:#2d2d2d;">
<h4 class="card-title" style="color:#bcbcbc;">Homepage</h4>
<h6 class="text-muted card-subtitle mb-2" style="color:#bcbcbc;">A site for all of Spaceboards development<br></h6>
<p class="card-text" style="color:#bcbcbc;">This site serves as a hub for all the open source work I do
so that it is easy to access. As well hosting information such as build guides for open source
hardware. For more information click an option up on header and take a look around.<br></p>
</div>
</div>
</div>
</body>
</html>