forked from JEON-SEUNGBHIN/BootCampWeek-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (71 loc) · 2.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FlickerFlow</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/main.css">
<script type="module" src="./js/main.js"></script>
<script type="module" src="./js/language.js"></script>
</head>
<body>
<div id="wrap">
<div id="pageUp">
<img src="./assets/icon/arrow.png" alt="">
</div>
<header>
<div id="top_of_header">
<div class="inner_wrap2">
<div id="logo">
<a href="./index.html">FlickerFlow</a>
</div>
<form action="" method="post" id="search">
<input type="text" id="search_input" focus>
<button type="submit">
<img src="./assets/icon/search.svg" alt="">
</button>
</form>
<div id="decorated_icons">
<img src="assets/icon/lang.png" id="lang_change_btn" alt="한영변환">
<a href="./heart.html">
<img src="assets/icon/heartlist.png" id="heartlink" alt="찜목록">
</a>
</div>
</div>
</div>
</header>
<main>
<div id="main_menus">
<div class="inner_wrap">
<button class="menu_btn chk" id="popular">인기순</button>
<button class="menu_btn" id="top_rated">높은 평점순</button>
</div>
</div>
<div class="inner_wrap">
<div id="movie-list">
</div>
</div>
</main>
</div>
<footer>
<div class="footer-content">
<div class="footer-left">
<p id="footer">
<a href="https://velog.io/@tmdqls/posts">전승빈</a>
<a href="https://infistudy.tistory.com">김병준</a>
<a href="https://for-cording-cheers.tistory.com/">김가연</a>
<a href="https://velog.io/@solpark16/">박솔</a>
<a href="https://velog.io/@ly0609/posts">이준혁</a>
<a href="https://velog.io/@eldoradodo/posts">김도연</a>
</p>
</div>
<div class="footer-right">
<a href="https://github.com/Junseungbhin/BootCampWeek-2">
<img src="assets/icon/github.png" alt="GitHub">
</a>
</div>
</div>
</footer>
</body>
</html>