HIM_eum / index.html
openfree's picture
Update index.html
49335b4 verified
raw
history blame
1.15 kB
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eUM : Open Perflexity</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
}
header {
background-color: #f8f9fa;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
p {
color: #666;
}
iframe {
flex: 1;
width: 100%;
border: none;
}
</style>
</head>
<body>
<header>
<h1>eUM : Open Perflexity</h1>
<p>Community: <a href="https://discord.gg/openfreeai" target="_blank">https://discord.gg/openfreeai</a></p>
</header>
<iframe src="https://eum-lovat.vercel.app" allowfullscreen></iframe>
</body>
</html>