forked from woowacourse/javascript-subway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 957 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<title>🚇 지하철 노선도</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/src/css/index.css" />
</head>
<body>
<div id="app">
<div class="d-flex justify-center mt-5 w-100">
<div class="w-100">
<header class="my-4"></header>
<main class="mt-10 d-flex justify-center">
<div class="d-flex flex-col">
<div class="d-flex justify-center">
<img src="src/images/subway_emoji.png" width="200" />
</div>
<p class="mt-0 text-center">
지하철 노선도 앱을 사용하기 위해서는 로그인이 필요합니다.
</p>
</div>
</main>
</div>
</div>
</div>
<script type="module" src="./src/js/index.js"></script>
</body>
</html>