TrikozikGames commited on
Commit
978e37b
·
verified ·
1 Parent(s): 715a8d1

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +75 -0
index.html ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <style>
8
+ body {
9
+ background-color: white; /* Ensure the iframe has a white background */
10
+ }
11
+
12
+
13
+ </style>
14
+ </head>
15
+ <body>
16
+ <!DOCTYPE html>
17
+ <html lang="ru">
18
+ <head>
19
+ <meta charset="UTF-8">
20
+ <title>Space Test</title>
21
+ <style>
22
+ body {
23
+ background: linear-gradient(135deg, #0d1117, #161b22);
24
+ display: flex;
25
+ justify-content: center;
26
+ align-items: center;
27
+ height: 100vh;
28
+ margin: 0;
29
+ font-family: system-ui, sans-serif;
30
+ }
31
+ .card {
32
+ background: #21262d;
33
+ border: 1px solid #30363d;
34
+ border-radius: 12px;
35
+ padding: 40px 60px;
36
+ text-align: center;
37
+ box-shadow: 0 0 40px rgba(88, 166, 255, 0.15);
38
+ }
39
+ h1 {
40
+ color: #58a6ff;
41
+ font-size: 2.5rem;
42
+ margin: 0;
43
+ }
44
+ p {
45
+ color: #8b949e;
46
+ font-size: 1.2rem;
47
+ margin-top: 12px;
48
+ }
49
+ .status {
50
+ color: #3fb950;
51
+ font-size: 1rem;
52
+ margin-top: 20px;
53
+ border: 1px solid #3fb950;
54
+ border-radius: 20px;
55
+ padding: 6px 20px;
56
+ display: inline-block;
57
+ }
58
+ </style>
59
+ </head>
60
+ <body>
61
+ <div class="card">
62
+ <h1>🚀 Space активен!</h1>
63
+ <p>Docker на HuggingFace работает</p>
64
+ <span class="status">● Online</span>
65
+ <p style="font-size: 0.9rem; margin-top: 16px;">Готов к запуску Android</p>
66
+ </div>
67
+ </body>
68
+ </html>
69
+
70
+ <script>
71
+
72
+ </script>
73
+ </body>
74
+ </html>
75
+