Update index.html
Browse files- index.html +50 -19
index.html
CHANGED
@@ -1,19 +1,50 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|