-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (158 loc) · 5.19 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Loruki | Cloud Hosting For Everyone</title>
<!-- link font awesome file-->
<link rel="stylesheet" href="css/all.min.css">
<!-- link font google-->
<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=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet">
<!-- utilities css-->
<link rel="stylesheet" href="css/utilities.css">
<!-- link main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--navbar-->
<div class="navbar">
<div class="container flex">
<h1 class="logo">Loruki.</h1>
<nav>
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="feature.html">Feature</a></li>
<li><a href="docs.html">Docs</a></li>
</ul>
</nav>
</div>
</div>
<!--end navbar-->
<!--showcase-->
<section class="showcase">
<div class="container grid">
<!-- start showcase text-->
<div class="showcase-text">
<h1>Easier Deployment</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid cupiditate distinctio fugiat incidunt
maiores nam nesciunt, quaerat sint. Corporis dolores ea eligendi eum laudantium obcaecati optio pariatur
quos ratione similique!
</p>
<a href="feature.html" class="btn btn-outline">Read More</a>
</div>
<!-- end showcase text-->
<!-- start showcase form-->
<div class="showcase-form card">
<h2>Request a Demo</h2>
<form action="#">
<div class="form-control">
<input type="text" name="name" placeholder="Name">
</div>
<div class="form-control">
<input type="text" name="company" placeholder="Company Name">
</div>
<div class="form-control">
<input type="email" name="email" placeholder="Email">
</div>
<input type="submit" value="Send" class="btn btn-primary">
</form>
</div>
<!-- end showcase form-->
</div>
</section>
<!--end showcase-->
<!--start stats-->
<section class="stats">
<div class="container">
<h3 class="stats-heading text-center my-1">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad, aliquid asperiores distinctio eligendi enim
illum iure magnam
</h3>
<div class="grid grid-3 text-center my-4">
<div>
<i class="fas fa-server fa-3x"></i>
<h3>10,349,405</h3>
<p>
Deployments
</p>
</div>
<div>
<i class="fas fa-upload fa-3x"></i>
<h3>987 TB</h3>
<p>
Published
</p>
</div>
<div>
<i class="fas fa-project-diagram fa-3x"></i>
<h3>2,343,265</h3>
<p>
Projects
</p>
</div>
</div>
</div>
</section>
<!--end stats-->
<!--start cli-->
<section class="cli">
<div class="container grid">
<img src="images/cli.png" alt="">
<div class="card">
<h3>Easy to use, cross platform CLI</h3>
</div>
<div class="card">
<h3>Deploy in second</h3>
</div>
</div>
</section>
<!--end cli-->
<!--start cloud-->
<section class="cloud bg-primary my-2 py-2">
<div class="container grid">
<div class="text-center">
<h2 class="lg">Extreme Cloud Hosting</h2>
<p class="lead my-1">Cloud Hosting like you've never seen. fast , efficient and scalable</p>
<a href="feature.html" class="btn btn-dark">Read More</a>
</div>
<img src="images/cloud.png" alt="">
</div>
</section>
<!--end cloud-->
<!--start language-->
<section class="languages">
<h2 class="md text-center my-2">
supported languages
</h2>
<div class="container flex">
<div class="card">
<h4>node.js</h4>
<img src="images/logos/node.png" alt="">
</div>
<div class="card">
<h4>clojure</h4>
<img src="images/logos/clojure.png" alt="">
</div>
<div class="card">
<h4>php</h4>
<img src="images/logos/php.png" alt="">
</div>
<div class="card">
<h4>python</h4>
<img src="images/logos/python.png" alt="">
</div>
<div class="card">
<h4>csharp</h4>
<img src="images/logos/csharp.png" alt="">
</div>
</div>
</section>
<!--end language-->
</body>
</html>