Create index.html
Browse files- index.html +77 -0
index.html
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>1hit.no Embed</title>
|
| 7 |
+
<style>
|
| 8 |
+
* {
|
| 9 |
+
margin: 0;
|
| 10 |
+
padding: 0;
|
| 11 |
+
box-sizing: border-box;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
body {
|
| 15 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
| 16 |
+
background: #f5f5f5;
|
| 17 |
+
min-height: 100vh;
|
| 18 |
+
display: flex;
|
| 19 |
+
flex-direction: column;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.header {
|
| 23 |
+
background: white;
|
| 24 |
+
padding: 1.5rem;
|
| 25 |
+
text-align: center;
|
| 26 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
| 27 |
+
margin-bottom: 1rem;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.container {
|
| 31 |
+
flex: 1;
|
| 32 |
+
max-width: 1400px;
|
| 33 |
+
margin: 0 auto;
|
| 34 |
+
padding: 0 1rem;
|
| 35 |
+
width: 100%;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.iframe-container {
|
| 39 |
+
background: white;
|
| 40 |
+
border-radius: 8px;
|
| 41 |
+
overflow: hidden;
|
| 42 |
+
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
| 43 |
+
height: calc(100vh - 120px);
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
iframe {
|
| 47 |
+
width: 100%;
|
| 48 |
+
height: 100%;
|
| 49 |
+
border: none;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.footer {
|
| 53 |
+
text-align: center;
|
| 54 |
+
padding: 1rem;
|
| 55 |
+
margin-top: 1rem;
|
| 56 |
+
color: #666;
|
| 57 |
+
font-size: 0.9rem;
|
| 58 |
+
}
|
| 59 |
+
</style>
|
| 60 |
+
</head>
|
| 61 |
+
<body>
|
| 62 |
+
<div class="header">
|
| 63 |
+
<h1>1hit.no Embed</h1>
|
| 64 |
+
<p>Embedding 1hit.no in an iframe</p>
|
| 65 |
+
</div>
|
| 66 |
+
|
| 67 |
+
<div class="container">
|
| 68 |
+
<div class="iframe-container">
|
| 69 |
+
<iframe src="https://1hit.no" title="1hit.no Website"></iframe>
|
| 70 |
+
</div>
|
| 71 |
+
</div>
|
| 72 |
+
|
| 73 |
+
<div class="footer">
|
| 74 |
+
<p>Embedding 1hit.no | Hosted on Hugging Face Spaces</p>
|
| 75 |
+
</div>
|
| 76 |
+
</body>
|
| 77 |
+
</html>
|