-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
46 lines (45 loc) · 1.81 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
<!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>New Tab</title>
<script src="./src/main.js" type="module"></script>
<link rel="stylesheet" href="./assets/styles/main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<body>
<header>
<div>
<img src="./assets/icon.png" alt="Cinephilic Logo" class="logo" />
<h3>Cinephilic</h3>
<span>Version 1.0</span>
</div>
<form id="form">
<input type="text" id="search" class="search" placeholder="Search TMDB" required>
<input type="button" id="search_btn"" class="search_btn" value="Search"/>
</form>
</header>
<div class="modal">
<!-- <div class="searchcard">
<span class="closebtn">
<i class="fas fa-times fa-2x"></i>
</span>
<h2 class="movie--title">${itr.original_title}</h2>
<div class="movie--details">
<p class="movie--description">${itr.overview}</p>
<p class="movie--release-date">Release date: ${itr.release_date}</p>
<p class="movie--popularity">Rating: ${itr.vote_average}</p>
</div>
</div> -->
</div>
<div class="card"></div>
</body>
</html>
<!-- written by invalidrishav -->