36 lines
804 B
HTML
36 lines
804 B
HTML
<html>
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://unpkg.com/tailwindcss@1/dist/tailwind.min.css"
|
||
/>
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://cdn.jsdelivr.net/npm/@docsearch/css@alpha"
|
||
/>
|
||
|
||
<title>DocSearch v3 – Sandbox</title>
|
||
</head>
|
||
|
||
<body>
|
||
<header
|
||
class="flex items-center justify-between px-4 py-3 bg-gray-100 shadow-lg"
|
||
>
|
||
<div class="uppercase">Website</div>
|
||
<div>
|
||
<div id="docsearch"></div>
|
||
</div>
|
||
</header>
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@alpha"></script>
|
||
<script>
|
||
docsearch({
|
||
container: '#docsearch',
|
||
indexName: 'docsearch',
|
||
apiKey: '25626fae796133dc1e734c6bcaaeac3c',
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|