-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>영화 검색 사이트</title>
<script src="movie.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="title_style">
<div>
<!-- <a href="https://github.com/eunkyum/movie-searched.git"
style="color: white; text-decoration-line: none; font-size: 50px;">
🍿내배캠 플러스🍿</a> -->
<a>
<img src="mingle_logo2.png" alt="logo-img"> </a>
</div>
</header>
<form id="search_form" class="search">
<label></label>
<div class="search_div">
<input type="text" id="search_input" placeholder="검색">
<!-- <button type="submit" onclick=search_btn()>🔍</i></button> -->
<button type="submit">🔍</button>
</div>
</form>
<div>
<div class="genre-buttons">
<button class="genre-btn" data-genre-id="28">액션</button>
<button class="genre-btn" data-genre-id="27">공포</button>
<button class="genre-btn" data-genre-id="35">코미디</button>
<button class="genre-btn" data-genre-id="16">애니매이션</button>
</div>
</div>
<main class="movie_list">
</main>
</body>
</html>