-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
167 lines (158 loc) · 4.59 KB
/
terms.html
File metadata and controls
167 lines (158 loc) · 4.59 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms of Service</title>
<link rel="stylesheet" href="path/to/your/styles.css" />
</head>
<body>
<header>
<h1>Terms of Service</h1>
</header>
<main>
<section>
<h2>Introduction</h2>
<p>
These terms of service ("Terms") apply to your access and
use of the website and services ("Services") provided by
Brian Sawyer ("we", "us", or "our"). By accessing or using
our Services, you agree to be bound by these Terms.
</p>
</section>
<section>
<h2>Use of Services</h2>
<p>
You may use our Services only in compliance with these Terms
and all applicable laws. You are responsible for your use of
the Services and for any content you provide, including
compliance with applicable laws, rules, and regulations.
</p>
</section>
<section>
<h2>Content</h2>
<p>
Our Services allow you to post, link, store, share, and
otherwise make available certain information, text,
graphics, videos, or other material ("Content"). You are
responsible for the Content that you post to the Services,
including its legality, reliability, and appropriateness.
</p>
</section>
<section>
<h2>Intellectual Property</h2>
<p>
The Services and its original content, features, and
functionality are and will remain the exclusive property of
Brian Sawyer and its licensors. Our trademarks and trade
dress may not be used in connection with any product or
service without the prior written consent of Brian Sawyer.
</p>
</section>
<section>
<h2>Termination</h2>
<p>
We may terminate or suspend your access to our Services
immediately, without prior notice or liability, for any
reason whatsoever, including without limitation if you
breach the Terms. Upon termination, your right to use the
Services will immediately cease.
</p>
</section>
<section>
<h2>Limitation of Liability</h2>
<p>
In no event shall Brian Sawyer, nor its directors,
employees, partners, agents, suppliers, or affiliates, be
liable for any indirect, incidental, special, consequential,
or punitive damages, including without limitation, loss of
profits, data, use, goodwill, or other intangible losses,
resulting from (i) your use or inability to use the
Services; (ii) any unauthorized access to or use of our
servers and/or any personal information stored therein;
(iii) any interruption or cessation of transmission to or
from the Services; and (iv) any bugs, viruses, trojan
horses, or the like that may be transmitted to or through
our Services by any third party.
</p>
</section>
<section>
<h2>Governing Law</h2>
<p>
These Terms shall be governed and construed in accordance
with the laws of your jurisdiction, without regard to its
conflict of law provisions.
</p>
</section>
<section>
<h2>Changes</h2>
<p>
We reserve the right, at our sole discretion, to modify or
replace these Terms at any time. If a revision is material
we will provide at least 30 days' notice prior to any new
terms taking effect. What constitutes a material change will
be determined at our sole discretion.
</p>
</section>
<section>
<h2>Contact Us</h2>
<p>
If you have any questions about these Terms, please contact
us at sawyervistahomes@gmail.com.
</p>
</section>
</main>
<footer>
<p>© 2024 Brian Sawyer. All rights reserved.</p>
</footer>
</body>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px 0;
text-align: center;
}
h1 {
margin: 0;
font-size: 2.5em;
}
main {
padding: 20px 14% 100px;
margin: 20px auto;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #007bff;
margin-top: 20px;
}
p {
margin: 10px 0;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #007bff;
color: #fff;
position: fixed;
width: 100%;
bottom: 0;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</html>