-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Git21221/IBMSkillsBuild
- Loading branch information
Showing
9 changed files
with
293 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
html, | ||
body { | ||
height: 100%; | ||
width: 100%; | ||
color: rgb(219, 219, 219); | ||
} | ||
|
||
.privacy { | ||
min-height: 100vh; | ||
height: auto; | ||
width: 90%; | ||
margin: 6rem auto; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
h3 { | ||
margin: 4rem 0rem 0 0; | ||
} | ||
|
||
.privacy h2 { | ||
font-size: 2.5rem; | ||
} | ||
|
||
.privacy-policy { | ||
max-width: 1000px; | ||
margin-top: 2rem; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.content p { | ||
padding: 1rem 0 0 0; | ||
margin: 0; | ||
line-height: 1.3; | ||
font-size: 1.4rem; | ||
color: #bebebe; | ||
} | ||
|
||
ul { | ||
list-style: circle; | ||
padding-left: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,230 @@ | ||
<!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="icon" type="image/x-icon" href="../icon/favicon.ico"> | ||
<link rel="apple-touch-icon" sizes="57x57" href="../icon/apple-icon-57x57.png" /> | ||
<link rel="apple-touch-icon" sizes="60x60" href="../icon/apple-icon-60x60.png" /> | ||
<link rel="apple-touch-icon" sizes="72x72" href="../icon/apple-icon-72x72.png" /> | ||
<link rel="apple-touch-icon" sizes="76x76" href="../icon/apple-icon-76x76.png" /> | ||
<link rel="apple-touch-icon" sizes="114x114" href="../icon/apple-icon-114x114.png" /> | ||
<link rel="apple-touch-icon" sizes="120x120" href="../icon/apple-icon-120x120.png" /> | ||
<link rel="apple-touch-icon" sizes="144x144" href="../icon/apple-icon-144x144.png" /> | ||
<link rel="apple-touch-icon" sizes="152x152" href="../icon/apple-icon-152x152.png" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="../icon/apple-icon-180x180.png" /> | ||
<link rel="icon" type="image/png" sizes="192x192" href="../icon/android-icon-192x192.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="../icon/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="96x96" href="../icon/favicon-96x96.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="../icon/favicon-16x16.png" /> | ||
<link rel="manifest" href="../icon/manifest.json" /> | ||
<meta name="msapplication-TileColor" content="#ffffff" /> | ||
<meta name="msapplication-TileImage" content="./icon/ms-icon-144x144.png" /> | ||
<meta name="theme-color" content="#ffffff" /> | ||
<!-- importing bootstrap --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | ||
<!-- Importing fontawesome icons --> | ||
<script src="https://kit.fontawesome.com/bf915a8f75.js" defer crossorigin="anonymous"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/locomotive-scroll.css" /> | ||
<link rel="stylesheet" href="../css/style.css" type="text/css" /> | ||
<link rel="stylesheet" href="./css/responsiveness.css" type="text/css" /> | ||
<link rel="stylesheet" href="./policy.css" /> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<nav class="navbar-top"> | ||
<div class="navbar-logo-and-text"> | ||
<div class="navbar-img"> | ||
<img src="../img/logo.png" alt="Logo" width="80px" /> | ||
</div> | ||
<div class="navbar-txt"> | ||
<a href="../index.html">GOAT Elitte Coders</a> | ||
</div> | ||
</div> | ||
<a class="icon"> | ||
<i class="fa-solid fa-bars" id="activei"></i> | ||
</a> | ||
<div class="navbar-links" id="navbar-link-toogle"> | ||
<a href="../UI/Register.html" title="View Our Solar System"> | ||
<svg xmlns="http://www.w3.org/2000/svg" id="orrery" enable-background="new 0 0 32 32" viewBox="0 0 32 32"> | ||
<circle class="sun" cx="16" cy="16" r="3.2" /> | ||
<g class="third"> | ||
<circle cx="16" cy="16" r="14" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width=".9" /> | ||
<circle cx="28.2" cy="23.1" r="1.7" /> | ||
</g> | ||
<g class="second"> | ||
<circle cx="16" cy="16" r="10.5" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width=".9" /> | ||
<circle cx="10.6" cy="7.2" r="1.7" /> | ||
</g> | ||
<g class="first"> | ||
<circle cx="16" cy="16" r="6.8" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width=".9" /> | ||
<circle cx="11.7" cy="21" r="1.7" /> | ||
</g> | ||
</svg> | ||
</a> | ||
<a class="navbar-links-txt" href="../index.html">Home</a> | ||
<a class="navbar-links-txt" href="../planets/planets.html#planets">Planets</a> | ||
<a class="navbar-links-txt" href="../gallery/gallery.html">Gallery</a> | ||
<a class="navbar-links-txt highlight" href="#faq">FAQ</a> | ||
<a class="navbar-links-txt" href="../UI/Register.html">Sign-in</a> | ||
</div> | ||
</nav> | ||
</div> | ||
|
||
<div class="privacy"> | ||
<h2>Privacy Policy</h2> | ||
<div class="privacy-policy"> | ||
<div class="content"> | ||
<div class="intro content"> | ||
<h3>Introduction</h3> | ||
<p>Welcome to virtual galaxy!</p> | ||
<p>We are committed to protecting your privacy. That is why this Privacy Policy, dated 08/10/2023, explains how we collect, use, disclose, and safeguard your personal information when you use our website.</p> | ||
</div> | ||
<div class="collected-info content"> | ||
<h3>Information we collect</h3> | ||
<p>We may collect the following types of information:</p> | ||
<ul> | ||
<li>Personal Information: we can use your personal information like your name and email for our further services.</li> | ||
<li>Device Information: we cannot use your device information like IP or other device information.</li> | ||
<li>Data Usage: for the service maintenance purposes, however please note that we do not collect more data than we need.</li> | ||
</ul> | ||
</div> | ||
<div class="use-of-info content"> | ||
<h3>How We Use Your Information</h3> | ||
<p>We may use your information for the following purposes:</p> | ||
<ul> | ||
<li>Providing services,</li> | ||
<li>Improving user experience</li> | ||
</ul> | ||
<p>Data Sharing - we may share your information with the following third parties:</p> | ||
<ul> | ||
<li>Third-party services we use for the website.</li> | ||
</ul> | ||
<p>Cookies and Tracking Technologies:</p> | ||
<ul> | ||
<li>We use cookies and similar tracking technologies.</li> | ||
<li>By using the Service, you consent to the use of cookies.</li> | ||
</ul> | ||
</div> | ||
<div class="policy-updates content"> | ||
<h3>Updates to the Policy</h3> | ||
<p>We may update this Privacy Policy periodically. Changes will be posted on this page, and the date of the latest revision will be indicated.</p> | ||
</div> | ||
<div class="policy-updates content"> | ||
<h3>Contact Information</h3> | ||
<p>If you have any questions or concerns about this Privacy Policy, please contact us directly.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<footer id="footer"> | ||
<div class="footer-top"> | ||
<div class="container modifiedFooterTop"> | ||
<div class="row modifyRow"> | ||
<div class="col-lg-3 col-md-6 footer-contact"> | ||
<h3> | ||
<img src="../img/logo.png" alt="" srcset="" height="60" width="60"> | ||
Virtual Galaxy | ||
</h3> | ||
<p> | ||
Elitte College and Engineering, Sodepur<br> | ||
Near kalyani Express, Madhawpur Village, Mohispota,<br> | ||
West Bengal, 700113<br> | ||
<strong>Phone:</strong> +91-9330541033<br> | ||
</p> | ||
</div> | ||
<div class="col-lg-3 col-md-6 footer-contact"> | ||
<h4> | ||
Useful Links | ||
</h4> | ||
<ul> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="#hero">Home</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="#">Services</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> | ||
<a href="./policy/policy.html">Privacy policy</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-lg-3 col-md-6 footer-contact"> | ||
<h4>Our Services</h4> | ||
<ul> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="../planets/planets.html">3D Models</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i><a href="../planets/planets.html">Planets</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="#">Information</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-lg-3 col-md-6 footer-contact"> | ||
<h4>Community</h4> | ||
<ul> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="#mainabout">About us</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="#benefits">Benefits</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i><a href="#achievement">Accomplishments</a> | ||
</li> | ||
<li> | ||
<i class="fa-solid fa-angle-right"></i> <a href="../FAQ/faq.html">FAQ</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container py-4 modifiedFooter"> | ||
<div class="social-links text-md-end pt-3 pt-md-0 socialLinkMod"> | ||
<div class="textSocials">Stay in the loop?</div> | ||
<a href="https://wa.me/9330541033" target="_blank" aria-label="Visit us on Whatapp" | ||
title="Whatapp (External Link)" rel="noopener noreferrer" class="whatsapp"> | ||
<i class="fa-brands fa-whatsapp"></i> | ||
</a> | ||
<a href="https://twitter.com/" target="_blank" aria-label="Visit us on Twitter" title="Twitter (External Link)" | ||
rel="noopener noreferrer" class="twitter"> | ||
<i class="fa-brands fa-twitter"></i> | ||
</a> | ||
<a href="https://www.facebook.com/" target="_blank" aria-label="Visit us on Facebook" | ||
title="Facebook (External Link)" rel="noopener noreferrer" class="facebook"> | ||
<i class="fa-brands fa-facebook"></i> | ||
</a> | ||
<a href="https://www.instagram.com/" target="_blank" aria-label="Visit us on Instagram" | ||
title="Instagram (External Link)" rel="noopener noreferrer" class="instagram"> | ||
<i class="fa-brands fa-instagram"></i> | ||
</a> | ||
<a href="https://www.linkedin.com/company/" target="_blank" aria-label="Visit us on Linkedin" | ||
title="Linkedin (External Link)" rel="noopener noreferrer" class="linkedin"> | ||
<i class="fa-brands fa-linkedin"></i> | ||
</a> | ||
</a> | ||
<a href="https://github.com/Git21221/IBMSkillsBuild" target="_blank" class="git-link"> | ||
<i class="fa-brands fa-github"></i></a> | ||
</div> | ||
<div class="me-md-auto text-md-start crMod"> | ||
<div class="copyright"> | ||
© Copyright <strong><span>Virtual Galaxy</span></strong>. All Rights Reserved | ||
</div> | ||
<div class="credits">Designed by <a href="#">G.O.A.T Elitte coders</a></div> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
|
||
</html> |