-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathterms.html
128 lines (102 loc) · 4.11 KB
/
terms.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyShop.com - Terms</title>
<style>
body {
font-family: 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
transition: background-color 0.3s;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
}
.header {
background-color: #ffcc00;
padding: 20px;
text-align: center;
border-bottom: 2px solid #000;
}
h1,
h2,
h3 {
color: #333;
}
.description {
margin-top: 20px;
margin-bottom: 20px;
}
.terms-section {
margin-bottom: 40px;
}
.terms {
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.terms h3 {
margin-top: 30px;
}
.terms ul {
margin-left: 20px;
}
.navigation {
text-align: center;
margin-top: 30px;
}
.nav-link {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
color: #333; /* Black color for navigation */
border-radius: 5px;
margin-right: 20px; /* Add space between navigation links */
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Terms & Conditions</h1>
<p>Welcome to EasyShop.com, your premier destination for quality products and exceptional shopping experiences.</p>
</div>
<section class="terms-section">
<h2>Terms and Conditions</h2>
<div class="description">
<p>By accessing and using EasyShop.com, you agree to comply with and be bound by the following terms and conditions. Please read these terms carefully before using our website.</p>
</div>
<div class="terms">
<h3>1. Website Usage</h3>
<p>Use of this website is subject to the following terms of use:</p>
<ul>
<li>You agree to use EasyShop.com for lawful purposes only.</li>
<li>You must not use this website in any way that causes, or may cause, damage to the website or impairment of the availability or accessibility of EasyShop.com.</li>
<li>We reserve the right to restrict access to certain areas of the website, or indeed our whole website, at our discretion.</li>
</ul>
<h3>2. Intellectual Property</h3>
<p>All trademarks, service marks, trade names, and logos appearing on EasyShop.com are the property of their respective owners.</p>
<h3>3. Links to Other Websites</h3>
<p>EasyShop.com may contain links to third-party websites or services. We have no control over the content, privacy policies, or practices of any third-party websites, and we do not assume any responsibility for them.</p>
<h3>4. Privacy Policy</h3>
<p>We are committed to protecting your privacy. Our Privacy Policy outlines how we collect, use, and protect your personal information.</p>
<h3>5. Refund Policy</h3>
<p>We want you to be completely satisfied with your purchase. Read our Refund Policy to understand our guidelines for returns and refunds.</p>
<h3>6. Contact Us</h3>
<p>If you have any questions about our terms and conditions, please feel free to <a href="contact.html">contact us</a>.</p>
</div>
</section>
<nav class="navigation">
<a href="refund.html" class="nav-link">Refund Policy</a>
<a href="contact.html" class="nav-link">Contact Us</a>
</nav>
</div>
</body>
</html>