-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
95 lines (88 loc) · 4.15 KB
/
about.html
File metadata and controls
95 lines (88 loc) · 4.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Retro Flix</title>
<link rel="stylesheet" href="/css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="theme-toggle">
<button id="themeToggle" class="theme-toggle-btn">
<span class="sun">☀️</span>
<span class="moon">🌙</span>
</button>
</div>
<div class="container">
<h1 class="retro-title">RETRO FLIX</h1>
<div class="about-container">
<div class="about-section">
<h2 class="section-title">About Us</h2>
<p>RetroFlix is your ultimate destination for discovering and downloading movies and TV shows. With our retro-inspired design and modern functionality, we aim to provide a unique and enjoyable experience for all movie enthusiasts.</p>
</div>
<div class="features-section">
<h2 class="section-title">Features</h2>
<div class="features-grid">
<div class="feature-card">
<span class="feature-icon">🔍</span>
<h3>Smart Search</h3>
<p>Advanced search functionality to find exactly what you're looking for.</p>
</div>
<div class="feature-card">
<span class="feature-icon">⚡</span>
<h3>Fast Downloads</h3>
<p>Multiple download options for the best experience.</p>
</div>
<div class="feature-card">
<span class="feature-icon">🎬</span>
<h3>Latest Content</h3>
<p>Regular updates with the newest movies and TV shows.</p>
</div>
<div class="feature-card">
<span class="feature-icon">🌙</span>
<h3>Dark Mode</h3>
<p>Comfortable viewing with dark and light themes.</p>
</div>
</div>
</div>
<div class="faq-section">
<h2 class="section-title">FAQ</h2>
<div class="faq-grid">
<div class="faq-item">
<h3>How do I download content?</h3>
<p>Simply search for your desired content, click on it, and choose from the available download links.</p>
</div>
<div class="faq-item">
<h3>Are downloads free?</h3>
<p>Yes, all content on RetroFlix is free to download.</p>
</div>
<div class="faq-item">
<h3>What quality are the downloads?</h3>
<p>We offer various quality options depending on availability, from 720p to 4K.</p>
</div>
<div class="faq-item">
<h3>How often is content updated?</h3>
<p>New content is added daily to ensure you have access to the latest releases.</p>
</div>
</div>
</div>
<div class="contact-section">
<h2 class="section-title">Contact</h2>
<p>For support or inquiries, reach out to us:</p>
<div class="contact-links">
<a href="mailto:support@example.com" class="contact-link">📧 Email</a>
<a href="#" target="_blank" class="contact-link">📱 Telegram</a>
<a href="https://github.com/shinas101" target="_blank" class="contact-link">💬 github</a>
</div>
</div>
</div>
<nav class="bottom-nav">
<a href="/index.html">HOME</a>
<a href="/search.html">SEARCH</a>
<a href="/about.html" class="active">ABOUT</a>
</nav>
</div>
<script src="/js/about.js"></script>
</body>
</html>