Create index.html
Browse files- index.html +35 -0
index.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="tr">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Maind AI</title>
|
| 7 |
+
<style>
|
| 8 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 9 |
+
body, html { height: 100%; font-family: sans-serif; background: #0f172a; overflow: hidden; }
|
| 10 |
+
nav {
|
| 11 |
+
height: 70px;
|
| 12 |
+
display: flex;
|
| 13 |
+
align-items: center;
|
| 14 |
+
padding: 0 30px;
|
| 15 |
+
background: #1e293b;
|
| 16 |
+
border-bottom: 1px solid #334155;
|
| 17 |
+
}
|
| 18 |
+
.logo-area { display: flex; align-items: center; gap: 12px; }
|
| 19 |
+
.logo-text { color: #38bdf8; font-weight: bold; font-size: 22px; letter-spacing: 1px; }
|
| 20 |
+
.container { height: calc(100% - 70px); width: 100%; }
|
| 21 |
+
iframe { width: 100%; height: 100%; border: none; }
|
| 22 |
+
</style>
|
| 23 |
+
</head>
|
| 24 |
+
<body>
|
| 25 |
+
<nav>
|
| 26 |
+
<div class="logo-area">
|
| 27 |
+
<img src="Maindai.png" alt="Logo" style="height: 45px;">
|
| 28 |
+
<div class="logo-text">MAIND AI</div>
|
| 29 |
+
</div>
|
| 30 |
+
</nav>
|
| 31 |
+
<div class="container">
|
| 32 |
+
<iframe src="https://teotonix-maindai.hf.space/?__theme=dark"></iframe>
|
| 33 |
+
</div>
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|