-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (78 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="title" content="im Second IMDB">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="An open source project, which can be used as the second IMDB without storing any informations.">
<meta name="keywords" content="imdb, movie, series, tv, movie detail, open source">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Milad Sadeghi">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="Assest/Styles/style.css">
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script defer src="Assest/JS/main.js"></script>
<title>im Second IMDB</title>
</head>
<body>
<nav class="py-3 border-bottom border-1 border-dark">
<div class="container">
<div class="logo">
</div>
<div class="search-bar d-flex justify-content-between">
<input class="search w-75 px-3" id="search" type="text"
placeholder="Name Of Moive, Series, Person, Collection And ...">
<button class="btn btn-outline-light search-btn" type="button" id="button-addon2">Search</button>
</div>
</div>
</nav>
<section class="trending py-4">
<div class="container">
<h1 class="text-light mb-2">Trending</h1>
<div class="position-relative hov">
<div class="trending-cards">
<div class="parrent-slide-btn parent-prev-btn">
<i id="prev-trending" class="text-white bi bi-arrow-left"></i>
</div>
<div class="parrent-slide-btn next-btn">
<i id="next-trending" class="text-white bi bi-arrow-right"></i>
</div>
</div>
</div>
</div>
</section>
<section class="popluar py-4">
<div class="container">
<h1 class="text-light mb-2">Popluar</h1>
<div class="position-relative hov">
<div class="popluar-cards">
<div class="parrent-slide-btn parent-prev-btn">
<i id="prev-popluar" class="text-white bi bi-arrow-left"></i>
</div>
<div class="parrent-slide-btn ">
<i id="next-popluar" class="text-white bi bi-arrow-right"></i>
</div>
</div>
</div>
</div>
</section>
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
<div id="liveToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<i class="bi bi-x-circle text-danger"></i>
<strong class="me-auto ms-1">Error</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
Nothing Was Enter In Input.
</div>
</div>
</div>
</body>
</html>