-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 915 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fsegurai - REST API</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
color: #333;
}
.endpoint {
margin-bottom: 20px;
}
.method {
display: inline-block;
padding: 5px 10px;
background-color: #3498db;
color: #fff;
border-radius: 5px;
margin-bottom: 0.5rem;
}
.path {
margin-left: 10px;
}
</style>
</head>
<body>
<h1>Available REST APIs</h1>
<br>
<h2>Version: 1.0.0</h2>
<div class="endpoint">
<div class="method">GET</div>
<div class="path">/data/countries.json</div>
<p>Get a list of all countries.</p>
</div>
</body>
</html>