Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -40
index.html
CHANGED
|
@@ -1,45 +1,22 @@
|
|
| 1 |
-
|
| 2 |
-
<!DOCTYPE html>
|
| 3 |
<html lang="en">
|
| 4 |
<head>
|
| 5 |
-
<meta charset="
|
| 6 |
-
<
|
| 7 |
-
<
|
| 8 |
-
|
| 9 |
-
margin: 0;
|
| 10 |
-
padding: 0;
|
| 11 |
-
background-color: #000;
|
| 12 |
-
color: #fff;
|
| 13 |
-
font-family: ui-monospace, Menlo, Consolas, monospace;
|
| 14 |
-
display: flex;
|
| 15 |
-
flex-direction: column;
|
| 16 |
-
align-items: center;
|
| 17 |
-
}
|
| 18 |
-
iframe {
|
| 19 |
-
width: 98vw;
|
| 20 |
-
height: 92vh;
|
| 21 |
-
border: none;
|
| 22 |
-
margin-top: 10px;
|
| 23 |
-
}
|
| 24 |
-
header {
|
| 25 |
-
text-align: center;
|
| 26 |
-
padding: 10px;
|
| 27 |
-
}
|
| 28 |
-
h1 {
|
| 29 |
-
font-size: 1.4em;
|
| 30 |
-
color: #38ffb3;
|
| 31 |
-
}
|
| 32 |
-
p {
|
| 33 |
-
font-size: 0.9em;
|
| 34 |
-
color: #ccc;
|
| 35 |
-
}
|
| 36 |
-
</style>
|
| 37 |
</head>
|
| 38 |
<body>
|
| 39 |
-
<
|
| 40 |
-
<
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
</body>
|
| 45 |
-
</html>
|
|
|
|
| 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"/>
|
| 6 |
+
<title>CodexReality3D — Chat-Controlled Visual Engine</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
+
<div id="app">
|
| 11 |
+
<canvas id="viewport"></canvas>
|
| 12 |
+
|
| 13 |
+
<div id="console">
|
| 14 |
+
<div class="header">Codex Command Console</div>
|
| 15 |
+
<div id="log"></div>
|
| 16 |
+
<input id="input" placeholder="> enter command (help)" autocomplete="off"/>
|
| 17 |
+
</div>
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
+
<script type="module" src="main.js"></script>
|
| 21 |
</body>
|
| 22 |
+
</html>
|