-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (84 loc) · 3.28 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
83
84
85
86
87
88
89
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css ">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-ico">
<title>MOVIES</title>
</head>
<body>
<header>
<video src="video/theboys.webm" autoplay muted></video>
<nav>
<div class="logo_ul">
<img src="img/logo.png" alt="">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Series</a>
</li>
<li>
<a href="#">Movies</a>
</li>
<li>
<a href="#">Kids</a>
</li>
</ul>
</div>
<div class="search_user">
<input type="text" placeholder="Search...."id="search_input">
<img src="img/user.jpg" alt="">
<div class="search">
<!-- <a href="#" class="card">
<img src="img/the boys.jpg" alt="">
<div class="cont">
<h3>The Boys</h3>
<p>Action, 2021 ,<span>IMDB</span><i class="bi bi-star-fill"></i>9.6</p>
</div>
</a> -->
</div>
</div>
</nav>
<div class="content">
<h1 id="title">Money heist</h1>
<p>Money Heist is a Spanish heist crime drama television series created by Álex Pina. The series traces two long-prepared heists led by the Professor, one on the Royal Mint of Spain, and one on the Bank …</p>
<div class="details">
<h6>A Netflix Original film</h6>
<h5 id="gen">Thriller</h5>
<h4 id="date">2021</h4>
<h3 id="rate"><span>IMDB</span><i class="bi bi-star-fill"></i>9.6</h3>
</div>
<div class="btns">
<a href="#" id="play">Watch<i class="bi bi-play-fill"></i></a>
<a href="#" id="download_main"><i class="bi bi-cloud-arrow-down-fill"></i></a>
</div>
</div>
<section>
<h4>Popular</h4>
<i class="bi bi-chevron-left"></i>
<i class="bi bi-chevron-right"></i>
<div class="cards">
<!-- <a href="#" class="card">
<img src="img/the boys.jpg" alt="" class="poster">
<div class="rest_card">
<img src="img/the boys1.jpg" alt="">
<div class="cont">
<h4>The Boys</h4>
<div class="sub">
<p>Action, 2022</p>
<h3><span>IMDB</span><i class="bi bi-star-fill"></i>9.6</h3>
</div>
</div>
</div>
</a> -->
</div>
</section>
</header>
<script src="app.js"></script>
</body>
</html>