SearchWizard / index.html
Abhaykoul's picture
Update index.html
d2f566a verified
raw
history blame contribute delete
No virus
801 Bytes
<!DOCTYPE html>
<html>
<head>
<title>AI Researcher</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.embed-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
margin: 40px auto;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.embed-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.embed-container:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="embed-container">
<iframe src="https://ai-researcher.netlify.app/" frameborder="0" width="100%" height="500"></iframe>
</div>
</body>
</html>