-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
131 lines (120 loc) · 6.34 KB
/
Copy pathterms.html
File metadata and controls
131 lines (120 loc) · 6.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HBazaar - Terms & Conditions</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="background-globes">
<div class="globe globe-1"></div>
<div class="globe globe-2"></div>
</div>
<div class="mobile-nav-overlay" id="mobileNavOverlay">
<div class="mobile-nav-drawer">
<div class="mobile-nav-header">
<div class="mobile-nav-title">Menu</div>
<button class="close-menu-btn" id="closeMenuBtn"><i class="fa-solid fa-times"></i></button>
</div>
<nav class="mobile-links">
<a href="index.html" class="mobile-link"><i class="fa-solid fa-home"></i> Home</a>
<a href="shop.html" class="mobile-link"><i class="fa-solid fa-store"></i> Shop</a>
<a href="orders.html" class="mobile-link"><i class="fa-solid fa-box"></i> Orders</a>
<a href="about.html" class="mobile-link"><i class="fa-solid fa-info-circle"></i> About</a>
</nav>
</div>
</div>
<div class="app-container">
<header class="glass-header">
<a href="index.html" class="logo" style="text-decoration: none;">
<i class="fa-solid fa-shapes"></i>
<span>HBazaar</span>
</a>
<nav class="desktop-nav">
<a href="index.html" class="nav-link">Home</a>
<a href="shop.html" class="nav-link">Shop</a>
<a href="orders.html" class="nav-link">Orders</a>
<a href="about.html" class="nav-link">About</a>
<div class="cart-btn" id="cartBtn">
<i class="fa-solid fa-shopping-cart"></i>
<span class="cart-badge hidden" id="cartBadge">0</span>
</div>
</nav>
<div style="display: flex; align-items: center; gap: 15px;" class="mobile-only-actions">
<div class="cart-btn" style="display: none;" id="mobileCartBtn"><i
class="fa-solid fa-shopping-cart"></i></div>
<button class="mobile-menu-btn" id="mobileMenuBtn"><i class="fa-solid fa-bars"></i></button>
</div>
<style>
@media (max-width: 768px) {
#mobileCartBtn {
display: block !important;
}
}
</style>
</header>
<main>
<section class="hero" style="margin: 2rem 0 3rem;">
<h1 style="font-size: 3rem;">Terms & <span class="gradient-text">Conditions</span></h1>
</section>
<section style="max-width: 800px; margin: 0 auto 6rem;" class="glass-content">
<h2 style="margin-bottom: 1rem; color: var(--text-primary);">1. Acceptance of Terms</h2>
<p style="font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
By accessing and using this website, you accept and agree to be bound by the terms and provision of
this agreement.
</p>
<h2 style="margin-bottom: 1rem; color: var(--text-primary);">2. Ownership & Management</h2>
<p style="font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
<strong>HBazaar</strong> is owned, designed, developed, and managed by <strong>Akash Singh</strong>.
All intellectual property rights concerning the website design, code, and original content belong to
the owner.
</p>
<h2 style="margin-bottom: 1rem; color: var(--text-primary);">3. Digital Products</h2>
<p style="font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem;">
All products are digital. Delivery is immediate upon payment confirmation. Due to the nature of
digital goods, refunds are processed at the sole discretion of the management.
</p>
<h2 style="margin-bottom: 1rem; color: var(--text-primary);">4. Governing Law</h2>
<p style="font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary);">
These terms shall be governed by and construed in accordance with the laws of India.
</p>
</section>
</main>
<footer>
<p>© 2026 HBazaar. Managed by Akash Singh.</p>
<div style="margin-top: 1rem;">
<a href="privacy.html">Privacy</a>
<a href="terms.html">Terms</a>
</div>
</footer>
</div>
<div class="cart-modal-overlay" id="cartModal">
<div class="cart-sidebar">
<div class="cart-header">
<h2>Your Bag</h2>
<button id="closeCartBtn"
style="background:none; border:none; color:white; font-size:1.5rem; cursor:pointer;"><i
class="fa-solid fa-times"></i></button>
</div>
<div class="cart-items" id="cartItems"></div>
<div class="cart-footer">
<div
style="display:flex; justify-content:space-between; font-size:1.2rem; font-weight:700; margin-bottom:1rem;">
<span>Total</span>
<span id="cartTotal">₹0.00</span>
</div>
<button class="checkout-btn" id="checkoutBtn">Checkout <i class="fa-solid fa-lock"
style="font-size:0.9rem; margin-left:8px; opacity:0.7;"></i></button>
</div>
</div>
</div>
<script src="js/db.js"></script>
<script src="js/app.js"></script>
</body>
</html>