redoc/examples/index.standalone.html
2025-12-15 21:00:05 +02:00

28 lines
713 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>ReDoc</title>
<!-- needed for adaptive design -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Source+Code+Pro:400:700"
rel="stylesheet"
/>
<script type="module" src="https://cdn.redocly.com/redoc/v3.0.0-rc.1/redoc.standalone.js"></script>
<!--
ReDoc doesn't change outer page styles
-->
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<redoc spec-url="http://petstore.swagger.io/v2/swagger.json"></redoc>
</body>
</html>