-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (27 loc) · 983 Bytes
/
index.html
File metadata and controls
34 lines (27 loc) · 983 Bytes
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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Atcha</title>
<link rel="stylesheet" href="style/reset.css" />
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<div class="webTitle" id="webTitle">Atcha</div>
<div class="searchBox">
<input type="text" id="searchMovie" placeholder="검색하기..." />
</div>
<div class="sortBox">
<button id="top_rated">최고 평점</button>
<button id="now_playing">상영중</button>
<button id="popular">최신 인기</button>
<button id="upcoming">개봉 예정</button>
</div>
<div class="cardBox" id="cardBox"></div>
<div class="pageBox" id="pageBox"></div>
<a href="#webTitle" class="topBtn"><button>top</button></a>
<script src="src/main.js"></script>
</body>
</html>