-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.html
111 lines (101 loc) · 4.28 KB
/
docs.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
109
110
111
<!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="custom.css">
<link rel="stylesheet" href="utilities.css">
<!-- search for cdnjs.com for fontawesome copy the link tag(</>) and paste here-->
<title>Documents</title>
</head>
<body>
<div class="navbar">
<div class="container flex">
<h1 class="logo">Rookie</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
</nav>
</div>
</div>
<section class="docs-head bg-primary py-3">
<div class="container grid">
<div>
<h1 class="xl">Features</h1>
<p class="lead">Learn how to work with the Rookie platform.</p>
</div>
<img src="image/Koala.jpg" alt="">
</div>
</section>
<section class="docs-main my-3">
<div class="container grid">
<div class="card bg-light p-3">
<h3 class="my-3">Essentials</h3>
<nav>
<ul>
<li class="text-primary"><a href="#">Introduction</a></li>
<li><a href="#">About Rookie</a></li>
<li><a href="#">Installation</a></li>
</ul>
</nav>
<h3 class="my-3">Deployment</h3>
<nav>
<ul>
<li><a href="#">Setting up a container</a></li>
<li><a href="#">Using the CLI</a></li>
<li><a href="#">Packaging the prsentation</a></li>
<li><a href="#">Upgrade and deployment</a></li>
</ul>
</nav>
</div>
<div class="card">
<h2>Introduction</h2>
<p>Try clicking on 'Home', 'Features', or 'Docs' for more special effects. Eum dolorum ea, nesciunt laudantium ipsam in facilis magni laborum, adipisci distinctio voluptas. Eligendi suscipit provident expedita.</p>
<div class="alert alert-success">
<img src="image/twitter-brands.svg" alt="">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nesciunt, id!
</div>
<h3>Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Deserunt voluptatibus consectetur fuga corrupti ab sint nulla pariatur voluptatum natus asperiores.</p>
<a href="#" class="btn btn-primary">Install CLI</a>
<h3>Requirements</h3>
<ul>
<li>Windows 7, Mac OSC, Linux</li>
<li>Node.js, all version 12</li>
</ul>
<h3>Install</h3>
<p>Mac using Hombrone</p>
<pre><code>$ grow install the rookie-co</code></pre>
<p>NPM</p>
<pre><code>$ NPM install the rookie-co</code></pre>
<p>Yarn</p>
<pre><code>$ Yarn install the rookie-co</code></pre>
</div>
</div>
</section>
<footer class="footer bg-dark py-5">
<div class="continer grid grid-3">
<div>
<h1>Rookie</h1>
<p>Copywrite © 2020</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
</nav>
<div class="social">
<a href="#"><img src="image/facebook-brands.svg" alt=""></a>
<a href="#"><img src="image/spotify-brands.svg" alt=""></a>
<a href="#"><img src="image/twitter-brands.svg" alt=""></a>
<a href="#"><img src="image/instagram-brands.svg" alt=""></a>
</div>
</div>
</footer>
</body>
</html>