-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterms.html
83 lines (71 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms and Conditions</title>
<link rel="stylesheet" href="terms.css">
</head>
<body>
<div class="logo">
<img src="LOGO.png" alt="Roam City Logo">
</div>
<header>
<nav>
<a href="home.html">Home</a>
<a href="traveltips.html">Travel Tips</a>
<a href="aboutus.html">About Us</a>
<a href="contactus.html">Contact Us</a>
</nav>
</header>
<div class="terms-container">
<h1>Terms and Conditions</h1>
<p>Welcome to Roam City! By accessing or using our website, you agree to comply with the following terms and conditions. Please read them carefully.</p>
<h2>1. Introduction</h2>
<p>These Terms and Conditions govern your use of our website. By using this site, you agree to be bound by these terms. If you do not agree, you must discontinue use immediately.</p>
<h2>2. Intellectual Property</h2>
<p>All content on this website, including text, images, logos, and design, is the property of Roam City. Unauthorized use, reproduction, or distribution is strictly prohibited.</p>
<h2>3. Use of the Website</h2>
<p>You agree to use this website for lawful purposes only. Prohibited activities include:</p>
<ul>
<li>Posting or transmitting any harmful, unlawful, or defamatory content.</li>
<li>Attempting to gain unauthorized access to the site or its servers.</li>
<li>Engaging in any activity that disrupts the operation of the website.</li>
</ul>
<h2>4. Limitation of Liability</h2>
<p>Roam City shall not be liable for any damages arising from the use or inability to use our website. This includes, but is not limited to, direct, indirect, or consequential damages.</p>
<h2>5. External Links</h2>
<p>Our website may contain links to third-party websites. We are not responsible for the content, policies, or practices of these external sites.</p>
<h2>6. Changes to Terms</h2>
<p>We reserve the right to modify these Terms and Conditions at any time. Changes will be posted on this page, and continued use of the website signifies acceptance of the updated terms.</p>
<h2>7. Governing Law</h2>
<p>These terms are governed by the laws of [Your Jurisdiction]. Any disputes will be resolved in the courts of [Your Jurisdiction].</p>
<h2>Contact Us</h2>
<p>If you have any questions about these terms, please contact us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
<footer>
<div class="footer-sec">
<h3>Popular Cities</h3>
<ul>
<li><a href="shi.html">Shilong</a></li>
<li><a href="varanasi.html">Varanasi</a></li>
<li><a href="goa.html">Goa</a></li>
<li><a href="jaipur.html">Jaipur</a></li>
</ul>
</div>
<div class="footer-sec">
<h3>Our Company</h3>
<ul>
<li><a href="terms.html">Terms and Conditions</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="footer-quote">
<div class="logo-footer" style="font-style: normal;">Roam To</div>
<div class="logo-footer" style="font-style: normal;">The City</div>
</div>
</footer>
</body>
</html>