forked from HYF-Class19/agile-development-loruki-group-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (111 loc) · 2.91 KB
/
index.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
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="index-images/loruki-favicon.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/utilities.css" />
<link href="css/style.css" rel="stylesheet" />
<title>Loruki | Cloud Hosting For Everyone</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<h1 class="logo">Loruki.</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>
<!-- Beginning below of the filling the page to be deleted and replaced by the body of the page.
This filling just allows to place the footer at the bottom of the page-->
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<!-- Ending above of the filling the page to be deleted and replaced by the body of the page.
This filling just allows to place the footer at the bottom of the page-->
<!-- Footer -->
<footer class="footer bg-dark py-5">
<div class="container grid grid-3">
<div>
<h1>Loruki</h1>
<p>Copyright @ 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
aria-label="github"
class="icon"
href="https://github.com/HYF-Class19/agile-development-loruki-group-2"
>
<i class="fab fa-github fa-2x"> </i>
</a>
<a aria-label="facebook" class="icon" href="#">
<i class="fab fa-facebook fa-2x"> </i>
</a>
<a aria-label="instagram" class="icon" href="#">
<i class="fab fa-instagram fa-2x"> </i>
</a>
<a aria-label="twitter" class="icon" href="#">
<i class="fab fa-twitter fa-2x"> </i>
</a>
</div>
</div>
</footer>
</body>
</html>