-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (67 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexusAPI</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<style>
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - adjusts to screen size */
@media only screen and (max-width: 600px) {
/* Adjust the font size of the h1 element */
h1 {
font-size: 24px;
}
/* Make the columns stack vertically */
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
/* Adjust the size of the bot dsflogos */
.responsive {
width: 100%;
height: auto;
}
}
</style>
</head>
<body>
<div class="navbarul">
<li style="float: left;"><a style="background-color: #04AA6D;">Home</a></li>
<li style="float: left;"><a href="./about.html">About</a></li>
<li style="float: right;"><a href="./login.html">Login</a></li>
</div>
<div class="header">
<div>
<h1>NEXUSupportal</h1>
<p>Get bots that work for you.</p>
</div>
</div>
<div class="content">
<h1>Bots</h1>
<h2>Google Chat Bots</h2>
<div class="flex-container">
<div class="flex-item-left" style="padding: 20px 0;">
<div class="center">
<img src="static/logo.png" alt="Logo" class="responsive">
<h3 style="text-align: center;"><a href="./google-chat/basic.html">Basic</a></h3>
</div>
</div>
<div class="flex-item-right" style="padding: 20px 0;">
<div class="center">
<img src="static/logo.png" alt="Logo" class="responsive">
<h3 style="text-align: center;"><a href="./google-chat/premium.html">Premium</a></h3>
</div>
</div>
</div>
</div>
</body>
</html>