-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 1.02 KB
/
index.html
File metadata and controls
29 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Carbon Systems</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@800&family=Cabin:wght@500&family=Montserrat:wght@600&family=Noto+Sans&family=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<ul class="menu">
<li><a href="#">Docs</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="https://github.com/carbonutilities/">Github</a></li>
<li><a href="https://discord.gg/e3bk2Vpays">Discord</a></li>
</ul>
</nav>
<div class="main-content">
<p class="welcome-text">Welcome to</p>
<h1>Carbon Systems</h1>
<p class="description">a one-stop shop for the unblocking community</p>
<a href="projects.html" class="view-button">View our Projects</a>
</div>
<script src="script.js"></script>
</body>
</html>