forked from LeeJunGoo/movie_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (111 loc) · 5.02 KB
/
index.html
File metadata and controls
116 lines (111 loc) · 5.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<title>영화 검색 콜렉션</title>
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon/favicon.ico" type="image/x-icon">
<!-- ogp -->
<meta property="og:title" content="영화 검색 콜렉션" />
<meta property="og:description" content="영화 검색 콜렉션 TEAM PROJECT"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://seokachu.github.io/movie_project"/>
<meta property="og:image" content="https://seokachu.github.io/movie_project/images/ogp.png"/>
<!-- fontawesome -->
<script src="https://kit.fontawesome.com/53932b056b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/responsive.css">
<script type="module" src="js/common.js"></script>
<script type="module" src="js/api/api.js" defer></script>
<script type="module" src="js/index.js" defer></script>
</head>
<body>
<header>
<h1 class="logo">
<a href=""><i class="fa-solid fa-clapperboard"></i> 영화 검색 콜렉션 :)</a>
</h1>
<nav class="movie-search-title">
<form class="movie-search-inner" action="" id="search-form">
<h2>영화 검색 : </h2>
<div class="movie-search">
<input type="text" id="search-text" placeholder="영화 제목을 입력해 주세요." autofocus>
<!-- <i class="fa-solid fa-magnifying-glass"></i> -->
</div>
<button id="search-btn">검색하기</button>
</form>
</nav>
</header>
<main>
<section class="movies-btn-wrapper">
<div class="movies-btn">
<ul class="movies-btn-list">
<li class="active"><a href="">전체보기</a></li>
<li><a href="">인기순</a></li>
<li><a href="">출시일순</a></li>
<li><a href="">드라마</a></li>
<li><a href="">액션</a></li>
</ul>
</div>
<div class="card-inner">
<ul class="card-list">
</ul>
</div>
<p class="list-none">검색내용이 없습니다.</p>
</section>
</main>
<footer>
<p class="copy">2024©movie_project 4조 깍두기</p>
<address>
<ul>
<li class="team-list">
<h3>박서영</h3>
<div class="team-list-info">
<a href="https://github.com/seokachu" target="_blank" title="github 이동하기">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://seokachu.tistory.com" target="_blank" title="blog 이동하기">
<i class="fa-solid fa-blog"></i>
</a>
</div>
</li>
<li class="team-list">
<h3>안주원</h3>
<div class="team-list-info">
<a href="https://github.com/joo1e" target="_blank" title="github 이동하기">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://velog.io/@urams79/posts" target="_blank" title="blog 이동하기">
<i class="fa-solid fa-blog"></i>
</a>
</div>
</li>
<li class="team-list">
<h3>김명환</h3>
<div class="team-list-info">
<a href="https://github.com/baram55" target="_blank" title="github 이동하기">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://velog.io/@study5/posts" target="_blank" title="blog 이동하기">
<i class="fa-solid fa-blog"></i>
</a>
</div>
</li>
<li class="team-list">
<h3>이준구</h3>
<div class="team-list-info">
<a href="https://github.com/LeeJunGoo" target="_blank" title="github 이동하기">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://velog.io/@leejungoo1396/posts" target="_blank" title="blog 이동하기">
<i class="fa-solid fa-blog"></i>
</a>
</div>
</li>
</ul>
</address>
</footer>
<div class="go-top"><i class="fa-solid fa-circle-chevron-up"></i></div>
</body>
</html>