-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (59 loc) · 1.86 KB
/
index.html
File metadata and controls
60 lines (59 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!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/main.css" rel="stylesheet" />
<link href="style/searchbar.css" rel="stylesheet" />
<title>Cine24</title>
<script type="module" src="src/mainpage.js" defer></script>
<script type="module" src="src/carousel.js" defer></script>
</head>
<body>
<header>
<div class="title_group">
<img class="title_1" src="assets/CINE24_LOGO.png" alt="logo" />
<img class="title_2"
src="assets/CINE24_TITLE_MAIN_TRANSPARENCY.png"
onmouseout="this.src='assets/CINE24_TITLE_MAIN_TRANSPARENCY.png'"
onmouseover="this.src='assets/CINE24_TITLE_TRANSPARENCY_HOVER.png'" alt="title"></img>
</div>
</header>
<button class="subpage_btn">
<h2>전체보기</h2>
</button>
<div class="carousel-container">
<div class="wrap">
<div class="carousel"></div>
</div>
<img
class="btn__prev"
src="assets/arrow.png"
onmouseout="this.src='assets/arrow.png'"
onmouseover="this.src='assets/arrow-hover.png'"
alt="Prev"
/>
<img
class="btn__next"
src="assets/arrow.png"
onmouseout="this.src='assets/arrow.png'"
onmouseover="this.src='assets/arrow-hover.png'"
alt="next"
/>
</div>
<div class="bottom_container">
<img
class="wazak"
src="assets/와작1.jpg"
onmouseout="this.src='assets/와작1.jpg'"
onmouseover="this.src='assets/와작2.png'"
alt="wazak"
/>
<div class="news_group">
<h2 class="new_title"><영화뉴스></h2>
<div id="newsContainer" class="news-container"></div>
</div>
</div>
</body>
</html>