-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (135 loc) · 5.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MovieApp</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
</head>
<body>
<!-- <div class="container"> -->
<section class="hero">
<img
src="https://c4.wallpaperflare.com/wallpaper/862/449/162/jack-reacher-star-wars-interstellar-movie-john-wick-wallpaper-preview.jpg"
alt="MovieApp Hero"
class="hero-image"
/>
<div class="overlay"></div>
<div class="hero-content">
<h1 class="title">Unlimited movies, TV shows, and more</h1>
<p class="subtitle">Watch anywhere. Cancel anytime.</p>
<a href="html/auth.html" class="button">Get Started</a>
</div>
</section>
<section class="content">
<div class="content-item">
<div class="text">
<h2>Enjoy on your TV</h2>
<p>
Watch on Smart TVs, Playstation, Xbox, Chromecast, Apple TV,
Blu-ray players, and more.
</p>
</div>
<img
src="https://media.istockphoto.com/id/1563409200/photo/man-watching-tv-with-remote-control-in-hand.webp?a=1&b=1&s=612x612&w=0&k=20&c=IcI11TaNu3xU9U21CzwLWpa3mF4NiIbcAClqoXWzXWI="
alt="TV"
class="image"
/>
</div>
<div class="content-item reverse">
<div class="text">
<h2>Download your shows to watch offline</h2>
<p>
Save your favorites easily and always have something to watch.
</p>
</div>
<img
src="https://media.istockphoto.com/id/1029147344/photo/video-archives-concept.jpg?b=1&s=612x612&w=0&k=20&c=r0DgvX8J98mVU9TK6v2kgIRneA-mWRnxvuL2kEQdLjY="
alt="Mobile"
class="image"
/>
</div>
<div class="content-item">
<div class="text">
<h2>Watch everywhere</h2>
<p>
Stream unlimited movies and TV shows on your phone, tablet,
laptop, and TV.
</p>
</div>
<img
src="https://media.istockphoto.com/id/1212530706/photo/man-using-tablet-for-watching-vod-service.jpg?b=1&s=612x612&w=0&k=20&c=GBPSm3AVDc6d_wdiH3JlAm98IRVnDWpZRwe5zswOtHs="
alt="Devices"
class="image"
/>
</div>
</section>
<section class="faq">
<h2 class="faq-title">Frequently Asked Questions</h2>
<div class="accordion">
<!-- JavaScript will inject the FAQ items here -->
</div>
</section>
<!-- </div> -->
<footer>
<div class="footer-container">
<div class="footer-grid">
<!-- Company Section -->
<div>
<h3 class="text-lg">Company</h3>
<ul class="space-y-2">
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
<!-- Support Section -->
<div>
<h3 class="text-lg">Support</h3>
<ul class="space-y-2">
<li><a href="#">Help Center</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Account</a></li>
</ul>
</div>
<!-- Legal Section -->
<div>
<h3 class="text-lg">Legal</h3>
<ul class="space-y-2">
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Cookie Preferences</a></li>
<li><a href="#">Corporate Information</a></li>
</ul>
</div>
<!-- Connect with Us Section -->
<div>
<h3 class="text-lg">Connect with Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
<div class="newsletter">
<h4>Subscribe to our newsletter</h4>
<form class="footer-flex">
<input type="email" placeholder="Enter your email" />
<button type="submit" class="btn-subscribe">Subscribe</button>
</form>
</div>
</div>
</div>
<!-- Footer Bottom Section -->
<div class="footer-bottom">
<p>© 2023 MovieApp. All rights reserved.</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>