Spaces:
Running
Running
Update index.html
Browse files- index.html +30 -2
index.html
CHANGED
|
@@ -3,13 +3,36 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Nexus
|
| 7 |
<style>
|
| 8 |
body {
|
| 9 |
margin: 0;
|
| 10 |
padding: 0;
|
| 11 |
height: 100vh;
|
| 12 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
}
|
| 14 |
iframe {
|
| 15 |
width: 100%;
|
|
@@ -19,6 +42,11 @@
|
|
| 19 |
</style>
|
| 20 |
</head>
|
| 21 |
<body>
|
| 22 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
</body>
|
| 24 |
</html>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Nexus Image Generator</title>
|
| 7 |
<style>
|
| 8 |
body {
|
| 9 |
margin: 0;
|
| 10 |
padding: 0;
|
| 11 |
height: 100vh;
|
| 12 |
overflow: hidden;
|
| 13 |
+
display: flex;
|
| 14 |
+
flex-direction: column;
|
| 15 |
+
align-items: center;
|
| 16 |
+
justify-content: center;
|
| 17 |
+
font-family: Arial, sans-serif;
|
| 18 |
+
background-color: #f4f4f4;
|
| 19 |
+
}
|
| 20 |
+
h3 {
|
| 21 |
+
margin: 20px 0;
|
| 22 |
+
font-size: 24px;
|
| 23 |
+
color: #333;
|
| 24 |
+
text-align: center;
|
| 25 |
+
}
|
| 26 |
+
a {
|
| 27 |
+
text-decoration: none;
|
| 28 |
+
color: white;
|
| 29 |
+
background-color: #007BFF;
|
| 30 |
+
padding: 10px 20px;
|
| 31 |
+
border-radius: 5px;
|
| 32 |
+
transition: background-color 0.3s;
|
| 33 |
+
}
|
| 34 |
+
a:hover {
|
| 35 |
+
background-color: #0056b3;
|
| 36 |
}
|
| 37 |
iframe {
|
| 38 |
width: 100%;
|
|
|
|
| 42 |
</style>
|
| 43 |
</head>
|
| 44 |
<body>
|
| 45 |
+
<h3>
|
| 46 |
+
<a href="https://www.nexusapi.tech/" target="_blank">
|
| 47 |
+
Visit Nexus AI
|
| 48 |
+
</a>
|
| 49 |
+
</h3>
|
| 50 |
+
<iframe src="https://image.nexusapi.tech/" title="Nexus Image Generator"></iframe>
|
| 51 |
</body>
|
| 52 |
</html>
|