-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
75 lines (64 loc) · 2.41 KB
/
order.html
File metadata and controls
75 lines (64 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Order – ByteBuilt</title>
<link rel="icon" type="image/png" href="assets/img/favicon.png" />
<link rel="stylesheet" href="assets/css/style.css"/>
</head>
<body>
<!-- Header -->
<header class="site-header">
<div class="container">
<img src="assets/img/logo.png" alt="ByteBuilt Logo" class="logo"/>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="order.html" class="active">Order</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="affiliates.html">Affiliates</a></li>
<li><a href="reviews.html">Reviews</a></li>
</ul>
</nav>
</div>
</header>
<!-- Order Section -->
<section class="hero" style="background: linear-gradient(135deg, #ff3c3c, #b40000);">
<div class="container">
<h1>Ready to Order?</h1>
<p>Let's bring your idea to life. Just follow the steps below 🔻</p>
</div>
</section>
<section class="features">
<div class="container">
<div class="feature">
<h3>🛒 Step 1 – View Packages</h3>
<p>Check out our <strong>#pricing</strong> channel in Discord for a full list of services and prices.</p>
</div>
<div class="feature">
<h3>📨 Step 2 – Open a Ticket</h3>
<p>Join our Discord server and go to <strong>#order-here</strong> to open a ticket with your request.</p>
</div>
<div class="feature">
<h3>💰 Step 3 – Make Payment</h3>
<p>We accept PayPal, Litecoin (LTC), and Gift Cards. Once payment is confirmed, your order begins!</p>
</div>
<div class="feature">
<h3>⏱️ Step 4 – Sit Back & Relax</h3>
<p>We’ll keep you updated throughout the process and deliver your files clean, zipped, and ready to use.</p>
</div>
<div class="feature">
<a href="https://discord.gg/jqaUuPrVQh" class="cta-btn" target="_blank">Join Our Discord</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<p>© 2025 ByteBuilt. All rights reserved.</p>
</div>
</footer>
</body>
</html>