jkparktm commited on
Commit
7366f2e
ยท
verified ยท
1 Parent(s): 40f93f8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +41 -19
index.html CHANGED
@@ -1,19 +1,41 @@
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
+ <title>KINS AI ํ™๋ณด ํŽ˜์ด์ง€</title>
6
+ <link rel="stylesheet" href="style.css">
7
+ </head>
8
+ <body>
9
+ <header>
10
+ <img src="images/logo.png" alt="KINS ๋กœ๊ณ " class="logo">
11
+ <nav>
12
+ <a href="#about">์†Œ๊ฐœ</a>
13
+ <a href="#projects">ํ”„๋กœ์ ํŠธ</a>
14
+ <a href="#contact">๋ฌธ์˜</a>
15
+ </nav>
16
+ </header>
17
+
18
+ <section id="about">
19
+ <h1>KINS AI ์†Œ๊ฐœ</h1>
20
+ <p>๊ตญ์ œ ์›์ž๋ ฅ ์•ˆ์ „์„ ์œ„ํ•œ KINS AI ์†”๋ฃจ์…˜์„ ์†Œ๊ฐœํ•ฉ๋‹ˆ๋‹ค.</p>
21
+ </section>
22
+
23
+ <section id="projects">
24
+ <h2>์ง„ํ–‰ ์ค‘์ธ ํ”„๋กœ์ ํŠธ</h2>
25
+ <ul>
26
+ <li>GPT ๊ธฐ๋ฐ˜ ๊ตญ์ œ ํ™๋ณด ํฌํ„ธ</li>
27
+ <li>๋ฌธ์„œ ๋น„๊ต ์‹œ์Šคํ…œ</li>
28
+ <li>PDF ๋ฐ Word ํŒŒ์ผ ๋ถ„์„ ์†”๋ฃจ์…˜</li>
29
+ </ul>
30
+ </section>
31
+
32
+ <section id="contact">
33
+ <h2>๋ฌธ์˜ํ•˜๊ธฐ</h2>
34
+ <p>Email: [email protected]</p>
35
+ </section>
36
+
37
+ <footer>
38
+ ยฉ 2025 KINS AI. All rights reserved.
39
+ </footer>
40
+ </body>
41
+ </html>