-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1339 from zalabhavy/terms/privacy
Added Terms and Condition/Privacy Policy pages
- Loading branch information
Showing
5 changed files
with
356 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
body { | ||
font-family: 'Poppins', sans-serif; | ||
background-image: linear-gradient(115deg, rgba(191, 7, 7, 0.456), rgba(7, 5, 7, 0.67)), url(../Images/homeSliderImages/home-slider-3.jpg); | ||
background-size: cover; | ||
background-position: center; | ||
background-attachment: fixed; | ||
color: #fff; | ||
margin: 0; | ||
padding: 20px; | ||
} | ||
|
||
/* Scrollbar track */ | ||
::-webkit-scrollbar-track { | ||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6); | ||
background-image: linear-gradient(to top, rgb(246, 10, 10), rgb(248, 145, 49), rgb(236, 239, 56)); | ||
} | ||
|
||
/* Scrollbar */ | ||
::-webkit-scrollbar { | ||
width: 12px; | ||
} | ||
|
||
/* Scrollbar thumb */ | ||
::-webkit-scrollbar-thumb { | ||
background-color: #ff0707; | ||
border-radius: 10px; | ||
border: 0.3px solid white; | ||
background-image: -webkit-linear-gradient( | ||
90deg, | ||
rgb(20, 21, 12) 0%, | ||
rgb(0, 0, 0) 25%, | ||
transparent 100%, | ||
rgb(247, 4, 4) 75%, | ||
transparent | ||
); | ||
transition: background-color 0.3s; | ||
} | ||
|
||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background-color: #dc3545; | ||
cursor: pointer; | ||
} | ||
|
||
main { | ||
max-width: 800px; | ||
margin: auto; | ||
padding: 20px; | ||
background-color: rgba(0, 0, 0, 0.5); | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); | ||
} | ||
|
||
section { | ||
margin-bottom: 30px; | ||
} | ||
|
||
h2 { | ||
font-size: 24px; | ||
font-weight: 700; | ||
color: #FFB2A8; | ||
margin-bottom: 10px; | ||
border-bottom: 1px solid #FFB2A8; | ||
padding-bottom: 5px; | ||
} | ||
|
||
p { | ||
color: #eee; | ||
font-size: 16px; | ||
line-height: 1.6; | ||
} | ||
|
||
ul { | ||
list-style-type: disc; | ||
margin-left: 20px; | ||
color: #eee; | ||
} | ||
|
||
li { | ||
margin-bottom: 8px; | ||
} | ||
|
||
/* Links */ | ||
a { | ||
color: #FFB2A8; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
/* Responsive adjustments */ | ||
@media (max-width: 600px) { | ||
main { | ||
padding: 10px; | ||
} | ||
h2 { | ||
font-size: 20px; | ||
} | ||
p { | ||
font-size: 14px; | ||
} | ||
} |
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,115 @@ | ||
/* Reset default styles */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
body { | ||
color: #333; | ||
line-height: 1.6; | ||
font-size: 16px; | ||
background-image: linear-gradient(115deg, rgba(191, 7, 7, 0.456), rgba(7, 5, 7, 0.67)), url(../Images/homeSliderImages/home-slider-3.jpg); | ||
background-size: cover; | ||
background-position: center; | ||
background-attachment: fixed; | ||
color: black; | ||
font-family: 'Poppins', sans-serif; | ||
padding: 20px; | ||
margin: 0; | ||
} | ||
|
||
/* Scrollbar track */ | ||
::-webkit-scrollbar-track { | ||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6); | ||
background-image: linear-gradient(to top, rgb(246, 10, 10), rgb(248, 145, 49), rgb(236, 239, 56)); | ||
} | ||
|
||
/* Scrollbar */ | ||
::-webkit-scrollbar { | ||
width: 12px; | ||
} | ||
|
||
/* Scrollbar thumb */ | ||
::-webkit-scrollbar-thumb { | ||
background-color: #ff0707; | ||
border-radius: 10px; | ||
border: 0.3px solid white; | ||
background-image: -webkit-linear-gradient( | ||
90deg, | ||
rgb(20, 21, 12) 0%, | ||
rgb(0, 0, 0) 25%, | ||
transparent 100%, | ||
rgb(247, 4, 4) 75%, | ||
transparent | ||
); | ||
transition: background-color 0.3s; | ||
} | ||
|
||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background-color: #dc3545; | ||
cursor: pointer; | ||
} | ||
|
||
main { | ||
max-width: 800px; | ||
margin: auto; | ||
padding: 20px; | ||
background-color: rgba(0, 0, 0, 0.5); | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); | ||
} | ||
|
||
section { | ||
margin-bottom: 30px; | ||
} | ||
|
||
h2 { | ||
font-size: 24px; | ||
font-weight: 700; | ||
color: #FFB2A8; | ||
margin-bottom: 10px; | ||
border-bottom: 1px solid #FFB2A8; | ||
padding-bottom: 5px; | ||
} | ||
|
||
p { | ||
color: #eee; | ||
font-size: 16px; | ||
line-height: 1.6; | ||
} | ||
|
||
ul { | ||
list-style-type: disc; | ||
margin-left: 20px; | ||
color: #eee; | ||
} | ||
|
||
li { | ||
margin-bottom: 8px; | ||
} | ||
|
||
/* Links */ | ||
a { | ||
color: #FFB2A8; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
/* Responsive adjustments */ | ||
@media (max-width: 600px) { | ||
main { | ||
padding: 10px; | ||
} | ||
h2 { | ||
font-size: 20px; | ||
} | ||
p { | ||
font-size: 14px; | ||
} | ||
} |
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,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../Css-files/privacy.css"> | ||
<link rel="shortcut icon" href="../Images/favicon/Foodie_Favicon.png" type="image/x-icon"> | ||
<title>Privacy Policy</title> | ||
</head> | ||
<body> | ||
<main> | ||
<section> | ||
<h2>Privacy Policy</h2> | ||
<p>Your privacy is important to us. It is our policy to respect your privacy regarding any information we may collect from you across our website.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Information We Collect</h2> | ||
<p>We may collect personal information including, but not limited to, name, email address, phone number, and payment details for processing orders and improving our services.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>How We Use Your Information</h2> | ||
<p>We use the information collected in various ways, including:</p> | ||
<ul> | ||
<li>Processing and fulfilling orders</li> | ||
<li>Improving our products and services</li> | ||
<li>Communicating with you about your orders</li> | ||
<li>Sending promotional emails and offers (with your consent)</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Security of Your Information</h2> | ||
<p>We implement security measures to protect your personal information against unauthorized access or alteration and ensure its confidentiality.</p> | ||
</section> | ||
|
||
<section> | ||
<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> | ||
<h2>Contact Us</h2> | ||
<p>If you have any questions about this Privacy Policy, please contact us:</p> | ||
<p>Email: [email protected]</p> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |
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,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../Css-files/terms.css"> | ||
<link rel="shortcut icon" href="../Images/favicon/Foodie_Favicon.png" type="image/x-icon"> | ||
<title>Terms and Conditions</title> | ||
</head> | ||
<body> | ||
<main> | ||
<section> | ||
<h2>Introduction</h2> | ||
<p>Welcome to our website's terms and conditions.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Intellectual Property Rights</h2> | ||
<p>Unless otherwise stated, we own the intellectual property rights in the website and material on the website.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Restrictions</h2> | ||
<p>You are restricted from all of the following:</p> | ||
<ul> | ||
<li>publishing any website material in any other media;</li> | ||
<li>selling, sublicensing and/or otherwise commercializing any website material;</li> | ||
<li>publicly performing and/or showing any website material;</li> | ||
<li>using this website in any way that is, or may be, damaging to this website;</li> | ||
<li>using this website in any way that impacts user access to this website;</li> | ||
<li>using this website contrary to applicable laws and regulations, or in a way that causes, or may cause, harm to the website, or to any person or business entity;</li> | ||
<li>engaging in any data mining, data harvesting, data extracting or any other similar activity in relation to this website, or while using this website;</li> | ||
<li>using this website to engage in any advertising or marketing.</li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Your Content</h2> | ||
<p>In these terms and conditions, "Your Content" shall mean any audio, video, text, images or other material you choose to display on this website.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>No warranties</h2> | ||
<p>This website is provided "as is," with all faults, and we make no express or implied representations or warranties, of any kind related to this website or the materials contained on this website.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Limitation of liability</h2> | ||
<p>In no event shall we be liable to you for anything arising out of or in any way connected with your use of this website, whether such liability is under contract, tort or otherwise, and we shall not be liable for any indirect, consequential or special liability arising out of or in any way related to your use of this website.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Indemnification</h2> | ||
<p>You hereby indemnify to the fullest extent us from and against any and all liabilities, costs, demands, causes of action, damages and expenses (including reasonable attorney’s fees) arising out of or in any way related to your breach of any of the provisions of these terms.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Severability</h2> | ||
<p>If any provision of these terms is found to be invalid under any applicable law, such provisions shall be deleted without affecting the remaining provisions herein.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Variation of Terms</h2> | ||
<p>We are permitted to revise these terms at any time as we see fit, and by using this website you are expected to review such terms on a regular basis to ensure you understand all terms and conditions governing the use of this website.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Entire Agreement</h2> | ||
<p>These terms constitute the entire agreement between us in relation to your use of this website, and supersede all prior agreements and understandings.</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Governing Law & Jurisdiction</h2> | ||
<p>These terms will be governed by and construed in accordance with the laws of india, and you submit to the non-exclusive jurisdiction of the state and federal courts located in india for the resolution of any disputes.</p> | ||
</section> | ||
</main> | ||
|
||
</body> | ||
</html> |
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