forked from 1eeyerin/js-movie-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Main : Movies</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="./css/constants.css"/>
<link rel="stylesheet" href="./css/reset.css"/>
<link rel="stylesheet" href="./css/common.css"/>
<link rel="stylesheet" href="./css/list.css"/>
<link rel="stylesheet" href="./css/index.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css" />
<script src="./js/index.js" type="module"></script>
</head>
<body>
<div class="gnb-header-wrap" include-html="./html/header.html"></div>
<main>
<section id="popularListSection">
<strong class="sec-h1">급상승 트렌드</strong>
<div class="skeleton-wrap carousel" include-html="./html/skeleton-cards.html"></div>
</section>
<section id="playingListSection">
<strong class="sec-h1">현재 상영중인 영화</strong>
<div class="skeleton-wrap list" include-html="./html/skeleton-cards.html"></div>
</section>
</main>
<div include-html="./html/common-html.html"></div>
</body>
</html>