forked from KenjiEtsu/SkyblockCodexAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmayor.html
More file actions
39 lines (36 loc) · 1.38 KB
/
mayor.html
File metadata and controls
39 lines (36 loc) · 1.38 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mayor • SkyBlockCodexAPI</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="bg-grid"></div>
<header class="topbar">
<div class="logo">SkyBlockCodexAPI</div>
<div class="topbar-links">
<a class="topbar-link" href="./index.html">Inicio</a>
<a class="topbar-link" href="./mayor.html">Mayor</a>
<a class="topbar-link" href="./bingo.html">Bingo</a>
<a class="topbar-link" href="./museum.html">Museum</a>
</div>
<div class="status" id="status">Listo</div>
</header>
<main class="container">
<section class="results" id="mayorPage">
<div class="empty">Cargando información del Mayor...</div>
</section>
</main>
<footer class="footer">
<span>Mayor • Detalles completos</span>
<span class="mono">API pública • Hypixel</span>
</footer>
<script src="./app.js"></script>
</body>
</html>