Skip to content

Commit

Permalink
Merge pull request #2623 from sahithinandikula/main
Browse files Browse the repository at this point in the history
adding terms and conditions to the website
  • Loading branch information
huamanraj authored Jul 25, 2024
2 parents 7411a14 + b34eccd commit 7569638
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 3 deletions.
1 change: 1 addition & 0 deletions Mystical-fantaies.html
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,7 @@ <h5>SUBSCRIBE TO OUR NEWSLETTER</h5>
"https://translate.google.com/translate_a/element.js?
cb=googleTranslateElementInit">
</script>

<div><a href="#" class="logo">SwapReads</a></div>
<div>
<p style="text-align: justify; " class="description">SwapReads.com is the ultimate destination for book
Expand Down
4 changes: 3 additions & 1 deletion books.html
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ <h4>How do I ensure the safety and security of my personal information on SwapRe
</div>
</div>
<br /><br />

<!--
- #FOOTER
-->
Expand Down Expand Up @@ -1010,6 +1010,8 @@ <h2>Quick Links</h2>
onclick="lenis.scrollTo('#contact')">E-Book</a></li>
<li class="foot-quick"><a href="./assets/html/about.html" onclick="lenis.scrollTo('#contact')">About</a>
</li>
<li class="foot-quick"><a href="./terms&cond.html" onclick="lenis.scrollTo('#terms&cond')">terms and conditions</a>
</li>
<li class="foot-quick"><a href="#contact" onclick="lenis.scrollTo('#contact')">Contact Us</a></li>
<li class="foot-quick"><a href="#faqq" onclick="lenis.scrollTo('#faqq')">FAQ</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion historical-chronicals.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
s<!DOCTYPE html>
<html lang="en">
<title>SwapReads</title>

Expand Down
2 changes: 1 addition & 1 deletion lol.html
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ <h4>How do I ensure the safety and security of my personal information on SwapRe
</div>
</div>
<br /><br />

<!--
- #FOOTER
-->
Expand Down
4 changes: 4 additions & 0 deletions mindful-living.html
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,8 @@ <h4>How do I ensure the safety and security of my personal information on SwapRe
</div>
<br /><br />



<!--
- #FOOTER
-->
Expand Down Expand Up @@ -595,6 +597,8 @@ <h5>SUBSCRIBE TO OUR NEWSLETTER</h5>
</div>
</footer> -->
<!-- Footer ended-->


<footer>
<div class="foot-top">
<div class="foot-left">
Expand Down
100 changes: 100 additions & 0 deletions terms&cond.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Swap Terms and Conditions</title>
<style>
/* Set background color and font family for the entire page */
body {
background: linear-gradient(to bottom, #f0797d 0%, #fad0c4 99%, #fad0c4 100%);
font-family: Arial, sans-serif;
}

/* Style the main container for the terms and conditions */
.book-swap-container {
width: 80%; /* Adjust as needed */
margin: 40px auto 40px auto;
background-color: rgba(214, 148, 148, 0.289);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
padding: 20px;
border-radius: 5px;
text-align: center;
}
.book-swap-container:hover{
box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.75), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* Style headings */
.book-swap-container h1 {
font-size: 24px;
color: #f70303;
font-weight: bold;
}

.book-swap-container h1:hover{
transform: scale(1.3);
}

.book-swap-container h2 {
font-size: 20px;
color: #201f1f;
}

/* Style paragraphs */
.book-swap-container p {
font-size: 18px;
color: #232222;
}


.book-swap-container ul {
list-style-type: none;
padding-left: 0;
font-size: 19px;
line-height: 1.5;
}



</style>
</head>
<body id="terms&cond">
<div class="book-swap-container">
<h1>Book Swap Terms and Conditions</h1>

<h2>1. Introduction</h2>
<p>Welcome to our book swap community! By participating in book swaps on our platform, you agree to the following terms and conditions.</p>

<h2>2. Book Swapping Process</h2>
<ul>
<li>Users can list books they want to swap.</li>
<li>Other users can express interest in swapping those books.</li>
<li>Once both parties agree, they arrange the swap.</li>
</ul>

<h2>3. Borrowing Period</h2>
<p>Borrowers can keep the swapped book for a specified period (e.g., 2 weeks). Extensions may be allowed if both parties agree.</p>

<h2>4. Late Returns</h2>
<p>If a borrower doesn't return the book on time, the following actions may be taken:</p>
<ul>
<li>First Reminder: A friendly reminder via email or notification.</li>
<li>Second Reminder: A stronger reminder with a potential warning.</li>
<li>Third Reminder: Suspension of book swap privileges.</li>
<li>Further Actions: Legal steps or penalties (if necessary).</li>
</ul>

<h2>5. Book Condition</h2>
<p>Borrowers must return books in the same condition they received them. Minor wear and tear are acceptable, but significant damage may result in penalties.</p>

<h2>6. Privacy and Data</h2>
<p>We respect your privacy. Read our privacy policy for details on data handling.</p>

<h2>7. Disputes</h2>
<p>In case of disputes, we encourage open communication between users. If unresolved, contact our support team for assistance.</p>

<h2>8. Changes to Terms</h2>
<p>We may update these terms. Check back for any changes.</p>
</div>
</body>
</html>

0 comments on commit 7569638

Please sign in to comment.