Skip to content

Commit

Permalink
Merge pull request #241 from SACHINkgu/main
Browse files Browse the repository at this point in the history
Contributed to the resolution of issues #239 and #242  by adding Terms and Condition page and Privacy Policy
  • Loading branch information
PriyaGhosal authored Oct 7, 2024
2 parents f98f038 + 4180dd8 commit 11dc4ad
Showing 3 changed files with 499 additions and 2 deletions.
243 changes: 243 additions & 0 deletions PrivacyPolicy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,243 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy - SkillWise</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Body styling */
body {
font-family: "Poppins", sans-serif;
background-color: #f0f4f8;
color: #333;
line-height: 1.7;
display: flex;
flex-direction: column;
min-height: 100vh;
}

/* Header with Gradient */
header {
background: linear-gradient(135deg, #008080, #20b2aa);
color: white;
padding: 50px 20px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
}

header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
letter-spacing: 1px;
font-weight: 600;
}

header p {
font-size: 1rem;
opacity: 0.85;
font-weight: 300;
}

/* Policy Content Section */
.policy-content {
background-color: white;
max-width: 900px;
margin: 50px auto;
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
color: #008080;
font-size: 2rem;
margin-bottom: 20px;
border-bottom: 3px solid #00a5a5;
padding-bottom: 10px;
}

.policy-content h3 {
margin-top: 25px;
color: #006666;
font-size: 1.6rem;
}

.policy-content p {
margin-bottom: 20px;
font-size: 1rem;
color: #555;
letter-spacing: 0.5px;
}

/* Back Button with animation */
.back-button {
display: inline-block;
margin-top: 40px;
padding: 15px 35px;
background-color: #008080;
color: white;
text-decoration: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 500;
box-shadow: 0 8px 15px rgba(0, 128, 128, 0.1);
transition: all 0.3s ease;
}

.back-button:hover {
background-color: #006666;
box-shadow: 0 12px 24px rgba(0, 128, 128, 0.2);
transform: translateY(-3px);
}

/* Footer with Gradient */
footer {
background: linear-gradient(135deg, #20b2aa, #008080);
color: white;
text-align: center;
padding: 20px;
margin-top: auto;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

footer p {
font-size: 0.9rem;
opacity: 0.85;
}

/* Icons (optional) */
.icon {
margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}

.policy-content {
padding: 30px;
margin: 30px auto;
}

.policy-content h2 {
font-size: 1.6rem;
}

.policy-content h3 {
font-size: 1.3rem;
}

.back-button {
padding: 10px 25px;
font-size: 1rem;
}
}
</style>
</head>
<body>
<header>
<h1>SkillWise Privacy Policy</h1>
<p></p>
</header>

<section class="policy-content">
<h2>Introduction</h2>
<p>
At SkillWise, we are committed to protecting your privacy. This Privacy
Policy outlines how we collect, use, and safeguard your information when
you use our e-learning platform.
</p>

<h3>1. Information We Collect</h3>
<p>
We may collect personal information such as your name, email address,
and course preferences when you sign up or interact with our platform.
Additionally, we collect usage data including, but not limited to, the
courses you view, time spent on the platform, and completion rates.
</p>

<h3>2. How We Use Your Information</h3>
<p>
Your information is used to enhance your learning experience, such as
delivering personalized course recommendations, tracking your progress,
and sending updates about our services. We may also use the data for
improving our platform functionality and optimizing content delivery.
</p>

<h3>3. Cookies</h3>
<p>
We use cookies to track your activity on our platform. Cookies help us
remember your preferences and improve your overall experience by keeping
you logged in, delivering relevant course content, and helping us
understand how users engage with the platform.
</p>

<h3>4. User Tracking and Analytics</h3>
<p>
We use tracking technologies like Google Analytics to monitor user
behavior, including pages visited, time spent on different sections, and
referral sources. This data helps us analyze trends, measure the
performance of different content, and improve user engagement.
</p>

<h3>5. Third-Party Services</h3>
<p>
SkillWise may use third-party services to process payments, deliver
course materials, and support other functionalities. These third-party
providers are contractually obligated to safeguard your data and use it
only for the specified purpose. Examples of such services include
payment gateways like PayPal and Stripe.
</p>

<h3>6. Data Security</h3>
<p>
We implement security measures to protect your personal information from
unauthorized access, misuse, or disclosure. Data encryption and secure
servers are used to store and manage your information.
</p>

<h3>7. Your Rights</h3>
<p>
You have the right to access, update, or delete your personal
information at any time. Please contact our support team if you wish to
exercise these rights. You can also choose to opt out of data tracking
through browser settings or by managing cookies.
</p>

<h3>8. Changes to This Policy</h3>
<p>
We may update this Privacy Policy periodically. Any changes will be
posted on this page with the effective date updated accordingly.
</p>

<!-- Back to Main Page Button -->
<a href="index.html" class="back-button">Back to Main Page</a>
</section>

<footer>
<p>&copy; 2024 SkillWise - All Rights Reserved</p>
</footer>

<script>
// Optional: Placeholder for future interactive features
console.log("Privacy Policy Page Loaded");
</script>
</body>
</html>
Loading

0 comments on commit 11dc4ad

Please sign in to comment.