Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

privacy policies file added #389

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
151 changes: 151 additions & 0 deletions Html-Files/privacy_policy_page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
<!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>
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
padding-top: 56px; /* Padding for the fixed navbar */
background-color: #f4f4f4;
color: #333;
}
.navbar {
background-color: black;
}
.navbar-brand, .nav-link {
color: #fff !important;
}
.navbar-nav .nav-link.active {
font-weight: bold;
}
footer {
background-color: black;
color: #fff;
padding: 20px 0;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
h1, h2 {
color: black;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<a class="navbar-brand" href="#" style="font-size: 32px;">Rapidoc</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="../index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../index.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../index.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../index.html">Contact</a>
</li>
</ul>
</div>
</nav>

<!-- Main Content -->
<div class="container mt-5">
<h1 class="mb-4">Privacy Policy</h1>

<section id="introduction">
<h2>Introduction</h2>
<p>Welcome to Rapidoc. We value your privacy and are committed to protecting your personal information. This Privacy Policy outlines how we collect, use, and protect your data when you use our website and services.</p>
</section>

<section id="data-collection" class="mt-4">
<h2>Data Collection</h2>
<p>We collect various types of information in connection with the services we provide, including:</p>
<ul>
<li>Personal Identification Information (Name, email address, phone number, etc.)</li>
<li>Usage Data (IP address, browser type, pages visited, etc.)</li>
<li>Cookies and Tracking Technologies</li>
</ul>
</section>

<section id="data-use" class="mt-4">
<h2>Data Use</h2>
<p>The information we collect is used for various purposes, including:</p>
<ul>
<li>To provide and maintain our services</li>
<li>To notify you about changes to our services</li>
<li>To provide customer support</li>
<li>To gather analysis or valuable information so that we can improve our services</li>
<li>To monitor the usage of our services</li>
<li>To detect, prevent, and address technical issues</li>
</ul>
</section>

<section id="data-sharing" class="mt-4">
<h2>Data Sharing</h2>
<p>We may share your personal information with third parties in the following circumstances:</p>
<ul>
<li>With service providers to monitor and analyze the use of our service</li>
<li>With business partners to offer you certain products, services, or promotions</li>
<li>With your consent, we may disclose your personal information for any other purpose</li>
</ul>
</section>

<section id="data-protection" class="mt-4">
<h2>Data Protection</h2>
<p>We implement a variety of security measures to maintain the safety of your personal information. However, please note that no method of transmission over the Internet, or method of electronic storage is 100% secure.</p>
</section>

<section id="your-rights" class="mt-4">
<h2>Your Rights</h2>
<p>You have the right to access, correct, or delete your personal information. You can do this by contacting us using the contact information provided below.</p>
</section>

<section id="changes" class="mt-4">
<h2>Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>
</section>

<section id="contact" class="mt-4">
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us:</p>
<ul>
<li>By email: [email protected]</li>
<li>By visiting this page on our website: [Contact Us Page URL]</li>
<li>By phone number: [Phone Number]</li>
</ul>
</section>
</div>

<!-- Footer -->
<footer class="text-center mt-5">
<div class="container">
<p>&copy; 2024 RapiDoc. All rights reserved.</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="#">Privacy Policy</a></li>
<li class="list-inline-item"><a href="#">Terms of Use</a></li>
<li class="list-inline-item"><a href="#">Contact</a></li>
</ul>
</div>
</footer>

<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>

Check warning

Code scanning / CodeQL

Inclusion of functionality from an untrusted source Medium

Script loaded from content delivery network with no integrity check.
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>