mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
26 lines
444 B
HTML
26 lines
444 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>ReDoc</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
redoc {
|
|
display: block;
|
|
}
|
|
</style>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<redoc spec-url="./openapi.yaml"></redoc>
|
|
<script src="../bundles/redoc.standalone.js"></script>
|
|
</body>
|
|
|
|
</html>
|