-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
97 lines (93 loc) · 5.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&display=swap" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/89a032c4e0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style/style.css" />
<link rel="stylesheet" href="style/reset.css" />
<link rel="stylesheet" href="style/filter.css" />
<script src="src/Main.js" defer></script>
<script src="src/Filter.js" defer></script>
<script src="src/Sort.js" defer></script>
<!-- 파비콘 넣기 -->
<link rel="shortcut icon" href="style/assets/favicon.ico" type="image/x-icon" />
<link rel="icon" href="style/assets/favicon.ico" type="image/x-icon" />
<title>Movies Project</title>
</head>
<body>
<div class="main">
<a href="/"><img class="logo" src="style/assets/icon.png" alt="" /></a>
<a href="/" class="title">Movies Project</a>
</div>
<div class="arrow">
<i class="fa-solid fa-circle-arrow-up topBtn" id="topBtn"></i>
</div>
<div class="search-box">
<input type="text" id="searchIp" class="searchIp" placeholder=" 영화 제목을 입력해주세요" />
<button id="searchBtn" class="searchBtn">검색</button>
</div>
<!--필터 위치-->
<div id="sort" class="sort-box">
<button id="sort-title" class="sort-btn">영화제목 정렬</button>
<button id="sort-id" class="sort-btn">영화ID 정렬</button>
<button id="show-all" class="sort-btn">ALL</button>
</div>
<div id="tags">
<div class="tag">Action</div>
<div class="tag">Adventure</div>
<div class="tag">Drama</div>
<div class="tag">Comedy</div>
</div>
<div id="all-btn"></div>
<section>
<ul class="movieList"></ul>
</section>
<footer>
<div class="footer">
<p>get to know us</p>
<div class="linkbox">
<div class="link">
<div class="showlink">
<!--  1번당 띄어쓰기 1번. 이름을 두 아이콘의 가운데에 맞추기 위해 사용함.-->
<p class="frsTwo"> 김영빈</p>
<a href="https://space-zerobeen.tistory.com/" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-blogger-b blogBtn fa-2x"></i></a>
<a href="https://github.com/dudqls611" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-github githubBtn fa-2x"></i></a>
</div>
</div>
<div class="link">
<div class="showlink">
<p class="frsTwo"> 박제이</p>
<a href="https://jei1211.github.io/" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-blogger-b blogBtn fa-2x"></i></a>
<a href="https://github.com/jei1211" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-github githubBtn fa-2x"></i></a>
</div>
</div>
<div class="link">
<div class="showlink">
<p class="frsTwo">  이예지</p>
<a href="https://velog.io/@yellog" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-blogger-b blogBtn fa-2x"></i></a>
<a href="https://github.com/nna-na" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-github githubBtn fa-2x"></i></a>
</div>
</div><div class="link">
<div class="showlink">
<p class="frsTwo"> 신윤식</p>
<a href="https://velog.io/@sys96" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-blogger-b blogBtn fa-2x"></i></a>
<a href="https://github.com/siksik1996" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-github githubBtn fa-2x"></i></a>
</div>
</div><div class="link">
<div class="showlink">
<p class="frsTwo"> 이동준</p>
<a href="https://www.notion.so/2f0a4e2eb99e46e984b0eb3cf8f4f9ca?v=e2972c99943a4bdab5f4251b20db3546&pvs=4" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-blogger-b blogBtn fa-2x"></i></a>
<a href="https://github.com/podoDJ" target="_blank" class="footer-aTag-width"><i class="fa-brands fa-github githubBtn fa-2x"></i></a>
</div>
</div>
</div>
<span>@ 2023 8조 아잇티팔(IT8)</span>
</footer>
</body>
</html>