Merge pull request #29 from CloudFire-LLC/add-website

Need a landing page
This commit is contained in:
Jamil
2020-06-02 23:01:12 -07:00
committed by GitHub
2 changed files with 48 additions and 1 deletions

5
docs/css/style.css Normal file
View File

@@ -0,0 +1,5 @@
main {
max-width: 70ch;
padding: 2ch;
margin: auto;
}

View File

@@ -1 +1,43 @@
<h1>FireGuard Docs</h1>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FireGuard: Firewall + Web Gui for WireGuard™</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<nav>
<a href="#introduction">Introduction</a>
|
<a href="#installation">Installation</a>
|
<a href="#usage">Usage</a>
|
<a href="#contributing">Contributing</a>
</nav>
<hr>
<section>
<h1>FireGuard</h1>
<a name="introduction"></a>
<h2>Introduction</h2>
<a name="installation"></a>
<h2>Installation</h2>
<a name="usage"></a>
<h2>Usage</h2>
<a name="contributing"></a>
<h2>Contributing</h2>
</section>
<footer>
<hr>
<span style="float: left">
© 2020 CloudFire LLC
</span>
</footer>
</main>
</body>
</html>