-
Notifications
You must be signed in to change notification settings - Fork 419
/
terms.html
212 lines (178 loc) · 6.27 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms Of Use - Master Web Development</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
margin: 0;
padding: 0;
background-color: rgb(248,250,252);
color: #333;
}
.container {
max-width: 900px;
margin: 50px auto;
padding: 30px;
background: #ffffff;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
font-size: 2.8rem;
color: #34495e;
margin-bottom: 20px;
border-bottom: 2px solid #3498db;
display: inline-block;
padding-bottom: 5px;
}
h2 {
color: #2c3e50;
margin-top: 30px;
font-size: 1.8rem;
position: relative;
}
h2:before {
content: '';
position: absolute;
height: 2px;
width: 50px;
background-color: #3498db;
bottom: -5px;
left: 0;
}
p {
font-size: 1.1rem;
color: #555;
margin-bottom: 15px;
}
ul {
margin-left: 20px;
margin-bottom: 20px;
color: #444;
}
ul li {
margin-bottom: 10px;
}
a {
color: #3498db;
text-decoration: none;
font-weight: 500;
}
a:hover {
color: #1abc9c;
text-decoration: underline;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #3498db;
color: #ffffff;
text-align: center;
border-radius: 5px;
text-decoration: none;
font-size: 1rem;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #1abc9c;
}
/* Adding some spacing between sections */
.section-spacing {
margin-bottom: 40px;
}
/* Style for the terms details */
.terms-content {
padding: 20px;
background-color: #f4f8fb;
border-left: 5px solid #3498db;
margin-top: 20px;
border-radius: 10px;
}
/* Styling for the effective date */
.effective-date {
color: #555;
font-weight: bold;
margin-bottom: 20px;
}
@media (max-width: 768px) {
.container {
padding: 20px;
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.6rem;
}
p {
font-size: 1rem;
}
.button {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Terms of Use</h1>
<h2>Introduction</h2>
<div class="terms-content">
<p>
Welcome to Master web development. These Terms of Service ("Terms")
govern your use of our website and any services, content,
and features offered through the Site (collectively, the "Services").
By accessing or using our Services, you agree to be bound by these
Terms. If you do not agree to these Terms, please do not use our
Services.
</p>
</div>
<h2>Eligibility</h2>
<div class="terms-content">
<p>You must be at least [minimum age, e.g., 13 years] old to use our
Services. By using our Services, you represent and warrant that
you meet this age requirement.
</p>
</div>
<h2>Use of Services</h2>
<div class="terms-content">
<p>You agree to use the Services only for lawful purposes and in accordance
with these Terms. You agree not to:</p>
<ul>
<li>1. Use the Services in any way that violates any applicable federal, state, local, or international law or regulation. </li>
<li>2. Impersonate or attempt to impersonate Master web development, a Master web development employee, another user, or any other person or entity.</li>
<li>3. Engage in any other conduct that restricts or inhibits anyone's use or enjoyment of the Services, or which, as determined
by us, may harm Master web development or users of the Services or expose them to liability.</li>
</ul>
</div>
<h2>Third-Party Services</h2>
<div class="terms-content">
<p>We may use third-party services to assist us in operating our website. These services have their own
Terms of Use, and we recommend reviewing them to understand how they handle your data.</p>
</div>
<h2>Changes to the Terms</h2>
<div class="terms-content">
<p>We may modify these Terms from time to time. We will notify you of any changes by posting
the new Terms on this page with a new effective date. You are advised to review these
Terms periodically for any changes. Your continued use of the Services after any
modifications to the Terms will constitute your acknowledgment of the modifications
and your consent to abide by and be bound by the modified Terms.</p>
</div>
<h2>Contact Us</h2>
<div class="terms-content">
<p>If you have any questions about this Privacy terms, please contact us at:</p>
<p>Email: <a href="mailto:info@masterwebdev.com">info@masterwebdev.com</a></p>
</div>
<div class="section-spacing">
<a href="/" class="button">Return to Home</a>
</div>
</div>
</body>
</html>