-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (140 loc) · 5.24 KB
/
Copy pathindex.html
File metadata and controls
153 lines (140 loc) · 5.24 KB
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
<!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="icon" type="image/x-icon" href="logo.png">
<title>Menous DB</title>
<!-- Option 1: Include in HTML -->
<style>
.navbar-brand h2{
font-weight: 100;
}
.mobile{
display: none;
}
.navbar{
background-color: #191919;
}
.container{
text-align: center;
padding-top: 10%;
color:#191919;
font-weight: 100;
}
#nav-sidebar a
{
border-bottom: #191919 1px solid;
margin-right:10px;
}
#nav-sidebar a:hover
{
border-bottom: white 1px solid;
}
#nav-sidebar .btn{
border-bottom: white 1px solid;
}
.container h1{
font-size: 60px;
font-weight: 100;
}
.container h3{
font-weight: 100;
}
.container h1:hover{
text-shadow: #fff 20px;
}
.row{
text-align: center !important;
}
#mac{
margin:50px;
padding:15px;
padding-left: 30px;
padding-right: 30px;
font-size: 20px;
border-radius: 20px;
border:#191919 solid 1px;
background-color: #191919;
color:white;
}
#mac:hover{
background-color: white;
color:#191919;
}
#windows{
padding:15px;
margin-right:50px;
padding-left: 30px;
padding-right: 30px;
font-size: 20px;
border-radius: 20px;
border:#191919 solid 1px;
background-color: #191919;
color:white;
}
#windows:hover{
background-color: white;
color:#191919;
}
@media screen and (max-width: 600px) {
.container h1{
font-size: 30px;
}
.container .row{
display: none;
}
.container .mobile{
display: inline;
}
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
</head>
<body style="font-weight: 100;">
<nav class="navbar navbar-xxl navbar-dark navbar-expand-xxl">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="logo.png" alt="" height="50" width="50">
</a>
<a class="navbar-brand" href="#">
<h2>Menous DB</h2>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
<div class="navbar-nav" id="nav-sidebar">
<a class="nav-link active" href="downloads.html">Downloads</a>
<a class="nav-link active" href="pysdk.html">Python SDK</a>
<a class="nav-link active" href="documentation.html">Documentation</a>
<a class="btn btn-outline-light" href="https://github.com/MenousTech/Menous-DB" role="button"><i style="font-size:20px;margin-left:10px;margin-right:10px;"class="bi bi-github"></i>Source Code</a>
</div>
</div>
</div>
</div>
</nav>
<div class="container">
<h1>The Database of the future</h1>
<h3>Let us build the next big thing together </h3>
<p>Choose your preference. SQL or No-SQL?</p>
<p>Its all up to you. Menous DB will scale according to your preference</p>
<div class="row">
<div class="col">
<a id="mac" type="button" href="downloads.html" class="btn"><i class="bi bi-apple" style="margin-right:10px" aria-hidden="true"></i> Dowload For Mac</a>
<a id="windows"type="button" href="downloads.html" class="btn"><i class="bi bi-windows" style="margin-right:10px"></i> Dowload For Windows</a>
</div>
</div>
<div class="mobile">
<a id="mac" type="button" href="downloads.html" class="btn"><i class="bi bi-apple" style="margin-right:10px" aria-hidden="true"></i> Dowload For Mac</a>
<a id="windows"type="button" href="downloads.html" class="btn"><i class="bi bi-windows" style="margin-right:10px"></i> Dowload For Windows</a>
</div>
</div>
<div class="container">
<i class="fa fa-apple" aria-hidden="true"></i>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>