-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (64 loc) · 3.02 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
<!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">
<title>K19MDB</title>
<link rel="stylesheet" href="styles/app.css">
<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=Inter:wght@100;300;500;700&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div>
<a href="index.html" id="logo">
<img src="assets/logo-long-white.svg" alt="Khisus19 logo">
</a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href = "mailto: [email protected]">Contact me</a></li>
<li><a href="https://khisus19-dev.netlify.app/" target="_blank">My Web site</a></li>
</ul>
</nav>
<section class="hero" id="hero">
<div class="title">
<h1><span class="title-span">Khisus19</span> Movie Database</h1>
</div>
<div class="subtitle">
<p>Look for the next movie to watch. We have thousands of movies in our catalog. Search through the trending or top-rated films right now.</p>
</div>
</section>
<section id="search">
<form action="" id="search-form">
<select id="sort-dropdown">
<option>Check for...</option>
<option id="tredingDropdown">Trending</option>
<option id="topRatedDropdown">Top-rated</option>
</select>
<input type="text" id="search-input" placeholder="Search by title">
<button id="search-btn">Search</button>
</form>
</section>
<section id="movies-section">
<h2 class="grid-title" id="grid-title">My personal Favorites</h2>
<div id="movies-grid-container">
</div>
</section>
<footer>
<p>This web was created by <a href="https://github.com/khisus19">Khisus19</a> for practice API consumption and asynchronous JavaScript using TMDB API.</p>
<a href="https://www.themoviedb.org/documentation/api"><img src="assets/icons/tmdb-logo-long.svg" alt="The movie Database logo" class="tmdb-logo"></a>
<ul>
<li><a href="https://github.com/khisus19" target="_blank"><img src="assets/icons/github.svg" alt="github icon"></a></li>
<li><a href="https://www.linkedin.com/in/jes%C3%BAs-francisco-alvarez-4b663423a/" target="_blank"><img src="assets/icons/linkedin.svg" alt="linkedin icon"></a></li>
<li><a href="https://www.instagram.com/khisus19/" target="_blank"><img src="assets/icons/instagram.svg" alt="instagram icon"></a></li>
</ul>
</footer>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="src/api_key.js"></script>
<script src="src/main.js"></script>
<script src="src/listeners.js"></script>
</body>
</html>