-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.html
More file actions
35 lines (33 loc) · 1.15 KB
/
Copy pathapps.html
File metadata and controls
35 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tree10 기본 앱 소개</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Tree10 기본 앱 소개</h1>
<nav>
<ul>
<li><a href="index.html">홈</a></li>
<li><a href="features.html">기능 설명</a></li>
<li><a href="compile.html">컴파일 가이드</a></li>
<li><a href="apps.html">기본 앱 소개</a></li>
</ul>
</nav>
</header>
<section id="apps-overview">
<h2>Tree10의 기본 앱</h2>
<ul>
<li>계산기 (`calc.air`): 간단한 사칙연산을 할 수 있는 계산기.</li>
<li>텍스트 에디터 (`edit.air`): 파일을 생성하고 수정할 수 있는 텍스트 에디터.</li>
<li>작업 관리자 (`taskman.air`): 시스템의 현재 상태를 확인할 수 있는 작업 관리자.</li>
</ul>
</section>
<footer>
<p>© 2024 Tree10 프로젝트</p>
</footer>
</body>
</html>