Update index.html
Browse files- index.html +26 -18
index.html
CHANGED
@@ -1,19 +1,27 @@
|
|
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>
|
3 |
+
<head>
|
4 |
+
<title>LogicKor | 한국어 언어모델 다분야 사고력 벤치마크</title>
|
5 |
+
<style>
|
6 |
+
body, html {
|
7 |
+
margin: 0;
|
8 |
+
padding: 0;
|
9 |
+
height: 100%;
|
10 |
+
overflow: hidden; /* 스크롤바 제거를 위함 */
|
11 |
+
}
|
12 |
+
|
13 |
+
iframe {
|
14 |
+
width: 100%;
|
15 |
+
height: 100%;
|
16 |
+
border: none; /* iframe의 기본 테두리 제거 */
|
17 |
+
}
|
18 |
+
</style>
|
19 |
+
</head>
|
20 |
+
<body>
|
21 |
+
|
22 |
+
<iframe src="https://lk.instruct.kr/" frameborder="0">
|
23 |
+
브라우저가 iframe을 지원하지 않습니다.
|
24 |
+
</iframe>
|
25 |
+
|
26 |
+
</body>
|
27 |
+
</html>
|