-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (72 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4Netflix</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to 4Netflix Services</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="services">
<h2>Our Services</h2>
<div class="service">
<div class="plan">
<h3>Netflix Accounts</h3>
<ul>
<li><strong>Basic Plan:</strong> DZD 1000/month</li>
<li><strong>Standard Plan:</strong> DZD 1900/month</li>
<li><strong>Premium Plan:</strong> DZD 2500/month</li>
</ul>
</div>
</div>
<div class="service">
<div class="plan">
<h3>Spotify Premium Accounts</h3>
<ul>
<li><strong>Individual:</strong> DZD 1500/month</li>
<li><strong>Duo:</strong> DZD 2200/month</li>
<li><strong>Family:</strong> DZD 2500/month</li>
<li><strong>Student:</strong> DZD 700/month</li>
</ul>
</div>
</div>
<div class="service">
<div class="plan">
<h3>Crunchyroll Premium Accounts</h3>
<ul>
<li><strong>Fan:</strong> DZD 2000/month</li>
<li><strong>Mega Fan:</strong> DZD 2700/month</li>
<li><strong>Ultimate Fan:</strong> DZD 3500/month</li>
</ul>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you don't see what you're looking for, feel free to contact us and let us know what you need.</p>
<div class="contact-info">
<p><a
href="https://docs.google.com/forms/d/e/1FAIpQLSfqVUWRVD_8kqlyE9P6dlXoyDGmU_p8hHRQh_fzj_52LSz3lA/viewform?usp=sf_link"><strong>Click
Here</strong></a></p>
<p><strong>Or</strong>
<p><strong>Phone:</strong> 0668749386</p>
</div>
</section>
</main>
<footer>
<p>© 2024 4Netflix Services</p>
</footer>
<script src="script.js"></script>
</body>
</html>