conservation-chatbot
Version:
An interactive AI chatbot that creates meaningful connections between visitors and endangered animals. Perfect for conservation organizations, NGOs, and environmental education.
26 lines • 584 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test Conservation Chatbot Docs Example</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
background: #000;
width: 100vw;
height: 100vh;
}
body {
min-height: 100vh;
min-width: 100vw;
overflow: hidden;
}
</style>
</head>
<body>
<script type="module" src="../src/main.js"></script>
</body>
</html>