-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.51 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 폰트 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Poppins:wght@100;200;300;400;500;600;800;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<title>데브시네마</title>
</head>
<body>
<!-- main -->
<main id="main" class="main layout-wrapper ">
<h1 class="title">정글 시네마 영화 목록</h1>
<nav class="cinema__nav">
<ul class="nav__list">
<li class="nav__list-item">
<a class="nav__selected nav__link" href="#">현재상영영화</a>
</li>
<li class="nav__list-item">
<a class="nav__link" href="#">개봉예정영화</a>
</li>
<li class="nav__list-item">
<a class="nav__link" href="#">박스오피스</a>
</li>
</ul>
</nav>
<section id="section" class="moive__container">
<h2 class="hidden">현재 상영중인 영화 목록</h2>
<ul id="movie__list" class="movie__list">
<!-- JS에서 삽입 -->
</ul>
</section>
</main>
<!-- footer -->
<footer class="footer"></footer>
<script src="./assets/js/main.js"></script>
</body>
</html>