-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsubpage.html
More file actions
45 lines (41 loc) · 1.56 KB
/
subpage.html
File metadata and controls
45 lines (41 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="en">
<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 href="style/sub.css" rel="stylesheet">
<link href="style/searchbar.css" rel="stylesheet">
<title>Cine24</title>
<script type="module" src="src/movieFetchfile.js" defer></script>
<script type="module" src="src/subscript.js" defer></script>
</head>
<body>
<body>
<header>
<div class="title">
<button class="subtomainbutton">
<!-- <h1 class="titlefont">Cine24</h1> -->
<!-- <img class="sub_title1" src="assets/CINE24_LOGO.png" alt="logo" /> -->
<img class="sub_title2" src="assets/CINE24_TITLE_TRANSPARENCY.png" onmouseout="src='assets/CINE24_TITLE_TRANSPARENCY.png'"
onmouseover="this.src='assets/CINE24_TITLE_TRANSPARENCY_HOVER.png'" alt="title"></img>
</button>
</div>
<!-- <button class="populbtn">인기순</button> -->
<!-- <button class="oldbtn">오래된순</button> -->
</header>
<div class="onbox">
<form class="box" onsubmit="search_Movie(event)">
<input type="text" class="search" id="search_input" placeholder="" />
<button
type="submit"
class="searchbtn"
id="search_button"
disabled
></button>
</form>
</div>
<section id="movie_Container" class="movie_ContainerClass"></section>
<div id="pagination"></div>
</body>
</html>