-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.html
108 lines (104 loc) · 4.47 KB
/
documentation.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<title>Edge | Cloud Hosting for Everyone </title>
</head>
<body>
<!---Navigation Bar-->
<div class="navigation-bar">
<div class="container flex">
<h1 class="title-1">Edge.</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="factors.html">Features</a></li>
<li><a href="documentation.html">Documentation</a></li>
</ul>
</nav>
</div>
</div>
<!-- Head -->
<section class="docs-head bg-primary py-3">
<div class="container grid">
<div>
<h1 class="xl">Documentation</h1>
<p class="lead">
Learn to work with the Edge Platform
</p>
</div>
<img src="images/docs.png" alt="">
</div>
</section>
<!-- Docs Main -->
<section class="docs-main my-4">
<div class="container grid">
<div class="card bg-light p-3">
<h3 class="my-2">Essentials</h3>
<nav>
<ul>
<li><a href="#" class="text-primary">Introduction</a></li>
<li><a href="#">About Edge</a></li>
<li><a href="#">Installation</a></li>
</ul>
</nav>
<h3 class="my-2">Deployment</h3>
<nav>
<ul>
<li><a href="#">Setting up a container</a></li>
<li><a href="#">Using the CLI</a></li>
<li><a href="#">Managing resources</a></li>
<li><a href="#">Upgrade & downgrade</a></li>
</ul>
</nav>
</div>
<div class="card">
<h2>Introduction</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Atque earum, rem rerum dolorum aperiam repellendus neque exercitationem numquam laborum optio, modi vero? Temporibus minima eos repellat, recusandae repellendus sapiente earum?</p>
<div class="alert alert-success">
<i class="fas fa-info"></i> Lorem, ipsum dolor sit amet consectetur adipisicing elit. Itaque, deleniti!
</div>
<h3>Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequatur ipsa neque odio illo porro ullam explicabo distinctio soluta modi atque!</p>
<a href="#" class="btn btn-primary">Install CLI</a>
<h3>Requirements</h3>
<ul>
<li>Windows 10, Mac OSX, Linux</li>
<li>Node.js v12 or Higher</li>
</ul>
<h3>Install</h3>
<p>Mac (Homebrew)</p>
<pre><code>$ brew install edge.cli</code></pre>
<p>NPM</p>
<pre><code>$ npm install edge.cli</code></pre>
<p>Yarn</p>
<pre><code>$ yarn install edge.cli</code></pre>
</div>
</div>
</section>
<!-- Footer -->
<div class="footer footer bg-dark py-5">
<div class="container grid grid-3">
<div>
<h1>Edge</h1>
<p>Copyright © 2021</p>
</div>
<nav>
<li><a href="home.html">Home</a></li>
<li><a href="factors.html">Features</a></li>
<li><a href="documentation.html">Documentation</a></li>
</nav>
<div class="social">
<a href="https://github.com"><i class="fab fa-github fa-2x"></i></a>
<a href="https://twitter.com"><i class="fab fa-twitter fa-2x"></i></a>
<a href="https://facebook.com"><i class="fab fa-facebook fa-2x"></i></a>
<a href="https://instagram.com"><i class="fab fa-instagram fa-2x"></i></a>
</div>
</div>
</div>
</body>
</html>