-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1024" />
<link
rel="icon"
href="https://pngimg.com/uploads/netflix/netflix_PNG10.png"
/>
<link rel="stylesheet" href="./style.css" />
<title>Bukan Web Ngebajak</title>
</head>
<body id="body">
<header>
<h1 class="title-header">Movie Search Engine</h2>
<nav>
<form id="form">
<input
type="text"
placeholder="Search Here"
id="search"
class="search"
/>
</form>
</nav>
</header>
<main id="main">
<div id="movieListContainer"></div>
<aside id="asideContainer">
<img id="asideImage" src="https://image.tmdb.org/t/p/w500/9xjZS2rlVxm8SFx8kPC3aIGCOYQ.jpg" alt="placeholder">
<article>
<h1 id="asideTitle">Pick something!</h1>
<p id="asideDescription">You can browse any kind of movies, see the description, and watch the trailer!</p>
</article>
</aside>
</main>
<footer>
<p id="footer">
Made with ❤️ by
<a
id="link"
href="https://github.com/farhanfahreezy/ProjectWebsiteGDSC-ITB"
target="_blank"
>Mohammad Farhan Fahrezy</a
>
</p>
</footer>
<div id="overlay" onclick="tutupPopup()"></div>
<script src="main.js"></script>
</body>
</html>