Abhaykoul commited on
Commit
d2f566a
1 Parent(s): e12b0b4

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +42 -1
index.html CHANGED
@@ -1 +1,42 @@
1
- <iframe src="https://ai-researcher.netlify.app/" frameborder="0" width="100%" height="500"></iframe>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>AI Researcher</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ font-family: Arial, sans-serif;
10
+ }
11
+
12
+ .embed-container {
13
+ position: relative;
14
+ padding-bottom: 56.25%; /* 16:9 aspect ratio */
15
+ height: 0;
16
+ margin: 40px auto;
17
+ background-color: #f0f0f0;
18
+ border: 1px solid #ccc;
19
+ border-radius: 10px;
20
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
21
+ }
22
+
23
+ .embed-container iframe {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 100%;
28
+ height: 100%;
29
+ border: none;
30
+ }
31
+
32
+ .embed-container:hover {
33
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
34
+ }
35
+ </style>
36
+ </head>
37
+ <body>
38
+ <div class="embed-container">
39
+ <iframe src="https://ai-researcher.netlify.app/" frameborder="0" width="100%" height="500"></iframe>
40
+ </div>
41
+ </body>
42
+ </html>