-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Recommendation App</title>
<!-- external CSS links -->
<!-- <link rel="stylesheet" href="../css/normalize.css"> -->
<link rel="stylesheet" href="css/style.css">
<!-- Google Fonts -->
<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=Abel&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/5d7bb29ba5.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="flex">
<div class="title flex">
<h1>Movie Match</h1>
<span>Find your next movie to watch</span>
<div class="search-container">
<input id="user-inp" type="text" placeholder="Enter a movie title" value=""><button id="search-btn">Get Recommendation</button>
</div>
</div>
</header>
<main>
<section class="popular">
<h2>Trending Today</h2>
<div id="trending" class="flex"></div>
</section>
<section id="movie-info" class="movie-info flex hidden">
<div id="info-img"></div>
<div id="info-text" class="flex"></div>
</section>
<section class="movie-rec hidden">
<h2 id="movie-rec-title"></h2>
<div id="rec-results" class="flex"></div>
</section>
</main>
<footer class="flex">
<section class="logo">
<a href="https://github.com/eva-lng/movie-match"><i class="fa-brands fa-github"></i></a>
<span>Movie Match</span>
<span>2023</span>
</section>
<section class="credits">
<p>Background Image by <a href="https://unsplash.com/@felixmooneeram">Felix Mooneeram</a></p>
<p>Data from the <a href="https://developer.themoviedb.org/docs">The Movie Database</a></p>
</section>
</footer>
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>