mirror of
https://github.com/ershisan99/flashcards-api.git
synced 2025-12-16 12:33:17 +00:00
54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Flashcards API</title>
|
|
</head>
|
|
<style>
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
color-scheme: dark light;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
height: 100svh;
|
|
}
|
|
|
|
a {
|
|
color: #fff;
|
|
border-bottom: 1px solid #38bdf8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
border-bottom-width: 2px;
|
|
}
|
|
div {
|
|
height: 2rem;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<main>
|
|
<h1>Flashcards API</h1>
|
|
<div>
|
|
<a href="/reference">API Reference (Scalar)</a>
|
|
</div>
|
|
<div>
|
|
<a href="/docs">API Reference (Swagger UI)</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |