-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 945 Bytes
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 945 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/favicon.ico" />
<title>Regulus Express API</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
color: #333;
}
.logo {
width: 200px;
height: auto;
margin: 20px 0;
}
.link {
text-decoration: none;
color: #007bff;
font-size: 18px;
}
.link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<img src="images/Logo-Regulus.svg" alt="Logo">
<h1>Express API</h1>
<a href="/api-docs" class="link">Swagger API Documentation</a> | <a href="/app.html" class="link">Home visualisation</a>
</body>
</html>