-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.13 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="개념을 이해하고 직접 구현하며 성장하는 개발 학습 가이드, BAM.dev"
/>
<meta name="theme-color" content="#080c14" />
<title>BAM.dev · JavaScript 학습</title>
<link rel="stylesheet" href="./styles/tokens.css" />
<link rel="stylesheet" href="./styles/app.css" />
</head>
<body>
<a class="skip-link" href="#lesson-content">본문으로 바로가기</a>
<div id="app">
<main
class="initial-loader"
id="lesson-content"
tabindex="-1"
>
<div class="state-message" role="status">
<span class="brand-mark" aria-hidden="true">B</span>
<p>학습 공간을 준비하고 있습니다…</p>
</div>
</main>
</div>
<noscript>
<p class="noscript-message">BAM.dev를 사용하려면 브라우저에서 JavaScript를 켜 주세요.</p>
</noscript>
<script type="module" src="./src/app.js"></script>
</body>
</html>