-
Notifications
You must be signed in to change notification settings - Fork 0
/
play-page.html
156 lines (151 loc) · 4.97 KB
/
play-page.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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>responsive Moviews Website</title>
<!-- Link to CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Fav Icon -->
<link rel="shortcut icon" href="img/fav-icon.png" />
<!-- Box Icons -->
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
</head>
<body>
<!-- Header -->
<header>
<!-- Nav -->
<div class="nav container">
<!-- Logo -->
<a href="index.html" class="logo">
Movie<span>Vel</span>
</a>
<div class="search-box">
<input type="search" name="" id="search-input" placeholder="Search movie">
<i class="bx bx-search-alt-2"></i>
</div>
<!-- User -->
<a href="#" class="user">
<img src="img/user.jpg" alt="" class="user-img">
</a>
<!-- NavBar -->
<div class="navbar">
<a href="index.html" class="nav-link nav-active">
<i class="bx bx-home"></i>
<span class="nav-link-title">Home</span>
</a>
<a href="#home" class="nav-link">
<i class="bx bxs-hot"></i>
<span class="nav-link-title">Trending</span>
</a>
<a href="#home" class="nav-link">
<i class="bx bx-compass"></i>
<span class="nav-link-title">Explore</span>
</a>
<a href="#home" class="nav-link">
<i class="bx bx-tv"></i>
<span class="nav-link-title">Movies</span>
</a>
<a href="#home" class="nav-link">
<i class="bx bx-heart"></i>
<span class="nav-link-title">Favourite</span>
</a>
</div>
</div>
</header>
<!-- Play Movie Container -->
<div class="play-container container">
<!-- Play Image -->
<img src="play-page/play-background.jpg" alt="Jumanji Movie" class="play-img">
<!-- Play Text -->
<div class="play-text">
<h2>Jumanji: Welcome to the Jungle</h2>
<!-- Ratings -->
<div class="rating">
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star-half"></i>
</div>
<!-- Tags -->
<div class="tags">
<span>Action</span>
<span>Adventure</span>
<span>4K</span>
</div>
<!-- Trailer Button -->
<a href="#" class="watch-btn">
<i class="bx bx-right-arrow"></i>
<span>Watch the Trailer</span>
</a>
</div>
<!-- Play Btn -->
<i class="bx bx-right-arrow play-movie"></i>
<!-- video Container -->
<div class="video-container">
<!-- Video-Box -->
<div class="video-box">
<video id="myvideo" src="play-page/Jumanji.mp4" controls></video>
<!-- Clase video Icon -->
<i class="bx bx-x close-video"></i>
</div>
</div>
</div>
<!-- About -->
<div class="about-movie container">
<h2>Jumanji: Welcome to the Jungle</h2>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Expedita esse optio aspernatur quasi quae odit laborum
vero, perspiciatis voluptatibus modi, dignissimos maxime repudiandae ex tempore nemo corrupti, rem dolore commodi.
</p>
<!-- Movie Cast -->
<h2 class="cast-heading">Movie Cast</h2>
<div class="cast">
<div class="cast-box">
<img src="play-page/cast1.jpg" alt="" class="cast-img">
<span class="cast-title">Dwayne Johnson</span>
</div>
<div class="cast-box">
<img src="play-page/cast2.jpg" alt="" class="cast-img">
<span class="cast-title">Karen Gillan</span>
</div>
<div class="cast-box">
<img src="play-page/cast3.jpg" alt="" class="cast-img">
<span class="cast-title">Kevin Hart</span>
</div>
<div class="cast-box">
<img src="play-page/cast4.jpg" alt="" class="cast-img">
<span class="cast-title">Jack Black</span>
</div>
<div class="cast-box">
<img src="play-page/cast5.jpg" alt="" class="cast-img">
<span class="cast-title">Nick Jonas</span>
</div>
<div class="cast-box">
<img src="play-page/cast6.jpg" alt="" class="cast-img">
<span class="cast-title">Madison Iseman</span>
</div>
</div>
</div>
<!-- Download -->
<div class="download">
<h2 class="download-title">Download Movie</h2>
<div class="download-links">
<a href="play-page/Jumanji.mp4" download>480p</a>
<a href="play-page/Jumanji.mp4" download>720p</a>
<a href="play-page/Jumanji.mp4" download>1080p</a>
</div>
</div>
<!-- Copyright -->
<div class="copyright">
<p>© MOVIEVEL All Right Reserved</p>
</div>
<!-- Link Swiper JS -->
<script src="js/swiper-bundle.min.js"></script>
<!-- Link Swiper JS -->
<script src="js/swiper-bundle.min.js"></script>
<!-- Link To JS -->
<script src="js/main.js"></script>
</body>
</html>