-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.35 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
<!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" />
<title>영화관</title>
</head>
<body>
<div id="app">
<header>
<h1><img src="./images/logo.png" alt="MovieList 로고" /></h1>
<div class="search-box">
<input class="search-input" type="text" placeholder="검색" />
<button class="search-button">검색</button>
</div>
</header>
<main>
<section class="item-view">
<h2>지금 인기 있는 영화</h2>
<ul class="item-list"></ul>
<button class="show-more btn primary full-width">더 보기</button>
</section>
</main>
<div class="modal">
<div class="modal-inner">
<div class="modal-header">
<div></div>
<h2 class="movie-title"></h2>
<button class="modal-close">X</button>
</div>
<div class="modal-body">
<div class="movie-thumbnail"></div>
<div class="movie-info">
<p class="movie-header"></p>
<p class="movie-overview"></p>
<div class="user-rating"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>