openfree commited on
Commit
49335b4
1 Parent(s): 7cd7f0b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +50 -19
index.html CHANGED
@@ -1,19 +1,50 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ko">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>eUM : Open Perflexity</title>
7
+ <style>
8
+ * {
9
+ margin: 0;
10
+ padding: 0;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ body {
15
+ font-family: Arial, sans-serif;
16
+ display: flex;
17
+ flex-direction: column;
18
+ height: 100vh;
19
+ }
20
+
21
+ header {
22
+ background-color: #f8f9fa;
23
+ padding: 1rem;
24
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
25
+ }
26
+
27
+ h1 {
28
+ font-size: 1.5rem;
29
+ margin-bottom: 0.5rem;
30
+ }
31
+
32
+ p {
33
+ color: #666;
34
+ }
35
+
36
+ iframe {
37
+ flex: 1;
38
+ width: 100%;
39
+ border: none;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body>
44
+ <header>
45
+ <h1>eUM : Open Perflexity</h1>
46
+ <p>Community: <a href="https://discord.gg/openfreeai" target="_blank">https://discord.gg/openfreeai</a></p>
47
+ </header>
48
+ <iframe src="https://eum-lovat.vercel.app" allowfullscreen></iframe>
49
+ </body>
50
+ </html>