-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
119 lines (114 loc) · 4.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Catergos</title>
<!-- Latest compiled and minified Bootstrap CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./static/css/style.css" />
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
<!-- Latest compiled and minified Bootstrap JavaScript -->
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"
></script>
<script src="./static/js/main.js"></script>
</head>
<body>
<!-- navbar -->
<nav id="main-nav" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<img style="height: 50px;" src="./assets/images/logo.png" alt="" />
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a target="_blank" href="https://github.com/catergos"
>Developer</a
>
</li>
<li>
<a target="_blank" href="https://github.com/Catergos/catergos-iso"
>Get Involved</a
>
</li>
</ul>
<ul class="nav navbar-nav navbar-right"></ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container-fluid">
<div id="hero" class="col-sm-12 flexBox">
<div class="col-sm-6">
<h1 id="main-heading">CATERGOS - The cat operating system</h1>
<!-- <h2 class="sub-heading">
The cat operating system
(some more content bla,bla,bla... Lorem
ipsum dolor sit amet, consectetur adipisicing elit. Architecto,
dolore.) <br />
P.S. - The onigiri operating system
</h2> -->
<h2 id="sub-heading">
What are cats? Nothing but small, cute form of beasts like lion and
tigers! Inspired from the difference, Catergos is a desktop linux
which is a beautiful desktop OS, but is a beast in itself!
</h2>
<button class="btn btn-lg btn-success downloadIso">
Download ISO
</button>
</div>
<div class="col-sm-6">
<img style="width:100%" src="./assets/images/logo.png" alt="" />
</div>
</div>
<div class="col-sm-12 content">
<h2 class="text-center heading">Features</h2>
<div class="col-sm-4 text-center">
<h3>Fast</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum sunt
inventore vitae exercitationem sapiente accusantium ad dolor
perferendis quaerat sequi!
</p>
</div>
<div class="col-sm-4 text-center">
<h3>
Open Source
</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum sunt
inventore vitae exercitationem sapiente accusantium ad dolor
perferendis quaerat sequi!
</p>
</div>
<div class="col-sm-4 text-center">
<h3>
Safe & Secure
</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum sunt
inventore vitae exercitationem sapiente accusantium ad dolor
perferendis quaerat sequi!
</p>
</div>
</div>
</div>
</body>
</html>