-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprivacy.html
90 lines (79 loc) · 3.06 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<link rel="stylesheet" href="privacy.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>Privacy Policy</h1>
<h2>Introduction</h2>
<p>
At Roam City, your privacy is important to us. This Privacy Policy outlines how we collect, use, and protect your information.
</p>
<h2>Information We Collect</h2>
<ul>
<li>Personal details such as your name, email address, and phone number</li>
<li>Browsing data including cookies, IP addresses, and device information</li>
<li>Feedback and inquiries submitted through our contact forms</li>
</ul>
<h2>How We Use Your Information</h2>
<p>
The information we collect is used to enhance your experience, provide personalized services, and address any concerns you may have.
</p>
<h2>Sharing Your Data</h2>
<p>
Your information is never sold to third parties. We only share data with trusted service providers when necessary for operational purposes.
</p>
<h2>Cookies and Tracking</h2>
<p>
We use cookies to ensure a smooth browsing experience. By continuing to use our site, you consent to our cookie policy.
</p>
<h2>Your Rights</h2>
<p>
You can access, update, or request deletion of your data at any time by contacting us at [email protected].
</p>
<h2>Policy Updates</h2>
<p>
This Privacy Policy may be updated periodically. We encourage you to review it whenever you visit our site.
</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>