Update index.html
Browse files- index.html +37 -18
index.html
CHANGED
@@ -1,19 +1,38 @@
|
|
1 |
-
<!DOCTYPE html>
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<html>
|
2 |
+
<head>
|
3 |
+
<title>fka/awesome-chatgpt-prompts</title>
|
4 |
+
<style>
|
5 |
+
body {
|
6 |
+
font-family: Arial, sans-serif;
|
7 |
+
background-color: #f0f0f0;
|
8 |
+
display: flex;
|
9 |
+
justify-content: center;
|
10 |
+
align-items: center;
|
11 |
+
height: 100vh;
|
12 |
+
margin: 0;
|
13 |
+
padding: 0;
|
14 |
+
color: #333;
|
15 |
+
}
|
16 |
+
|
17 |
+
.iframe-container {
|
18 |
+
border: 1px solid #ccc;
|
19 |
+
border-radius: 10px;
|
20 |
+
overflow: hidden;
|
21 |
+
width: 80%;
|
22 |
+
height: 80%;
|
23 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
24 |
+
}
|
25 |
+
|
26 |
+
iframe {
|
27 |
+
width: 100%;
|
28 |
+
height: 100%;
|
29 |
+
border: none;
|
30 |
+
}
|
31 |
+
</style>
|
32 |
+
</head>
|
33 |
+
<body>
|
34 |
+
<div class="iframe-container">
|
35 |
+
<iframe src="https://atlas.nomic.ai/map/0d8750f7-929b-41dd-ac2f-2384c1a3e71c/273b41ee-ca2e-4916-ab3a-28e8f40c42ad" title="Nomic Atlas"></iframe>
|
36 |
+
</div>
|
37 |
+
</body>
|
38 |
+
</html>
|