-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (90 loc) · 4.73 KB
/
index.html
File metadata and controls
99 lines (90 loc) · 4.73 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Retro Style theme for Bitz</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img style="height: 70px;width: 70px;" src="assets/logo.png" alt="">
</div>
<ul class="nav-items">
<li><a href="index.html">Home</a></li>
<li><a href="movies.html">Movies</a></li>
<!-- <li><a href="#">Contact</a></li> -->
<li><a href="fans.html">Fans</a></li>
<li><a href="#">Genre</a></li>
</ul>
</nav>
</header>
<main style="display: flex;flex-direction: column;align-items: center;">
<!-- cover image div -->
<div style="height:80vh;width: 100vw;">
<div
style="height:80vh;width: 100vw; background:url('https://wallpapers.com/images/hd/horror-movie-collage-7477-x-4300-v4a34khnzs7azmor.jpg');background-repeat: none;background-size: cover;">
</div>
<!-- <div
style="position: absolute; top: 0;left:0; background-color: #39373762; width: 100vw;height: 80vh;opacity: 1;border-radius: 10px">
</div>> -->
</div>
</div>
<!-- slider div -->
<div style="display: flex;flex-direction: column; margin: 20px 0;">
<h2>Featured Movies</h2>
<div style="display: flex; flex-direction: row; ">
<div
style="width: 30vw;height: 40vh; background: url('assets/matrix.jpg');background-repeat: none;background-size: cover; position: relative; box-sizing: border-box;border-radius: 10px; margin: 20px;overflow: hidden;">
<div
style="position: absolute; top: 0;left:0; background-image: linear-gradient(#ffffff00,#121212); width: 80vw;height: 60vh;opacity: 1;border-radius: 10px">
</div>
<div style="position: absolute;bottom: 20px;left:0;padding: 10px;">
<h2 style="color: white;">The Matrix</h2>
<p style="color: white;font-family: serif;">A dystopian future in which humanity is unknowingly
trapped
inside the Matrix,
a simulated reality created by intelligent machines</p>
</div>
</div>
<div
style="width: 30vw;height: 40vh; background: url(assets/hum-aapke-hain-kaun.webp);background-repeat: none;background-size: cover; position: relative; box-sizing: border-box;border-radius: 10px; margin: 20px;overflow: hidden;">
<div
style="position: absolute; top: 0;left:0; background-image: linear-gradient(#ffffff00,#121212); width: 80vw;height: 60vh;opacity: 1;border-radius: 10px">
</div>
<div style="position: absolute;bottom: 20px;left:0;padding: 10px;">
<h2 style="color: white;">Dilwale Dulhania Le Jayenge</h2>
<p style="color: white;font-family: serif;">A dystopian future in which humanity is unknowingly
trapped
inside the Matrix,
a simulated reality created by intelligent machines</p>
</div>
</div>
<div
style="width: 30vw;height: 40vh; background: url(assets/ddlj.jpg);background-repeat: none;background-size: cover; position: relative; box-sizing: border-box;border-radius: 10px; margin: 20px;overflow: hidden;">
<div
style="position: absolute; top: 0;left:0; background-image: linear-gradient(#ffffff00,#121212); width: 80vw;height: 60vh;opacity: 1;border-radius: 10px">
</div>
<div style="position: absolute;bottom: 20px;left:0;padding: 10px;">
<h2 style="color: white;">The Matrix</h2>
<p style="color: white;font-family: serif;">A dystopian future in which humanity is unknowingly
trapped
inside the Matrix,
a simulated reality created by intelligent machines</p>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="foot-text">
<p>Thanks for visiting us .
Copyright © 2025
</p>
<p>Made with ❤️ by Solve-Ease</p>
</div>
</footer>
</body>
</html>