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

Added Disclaimer Page #628

Merged
merged 4 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
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
44 changes: 44 additions & 0 deletions disclaimer/disclaimer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to right, #d76565, #dd8c6c); /* Gradient from light blue to deep teal */
color: #333;
}

header, footer {
background-color: rgba(0, 0, 0, 0.1); /* Light transparent background for header and footer */
padding: 20px;
text-align: center;
}

.container {
padding: 30px;
}

.disclaimer {
background-color: rgba(227, 209, 225, 0.8); /* Light background with some transparency */
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1, h2 {
color: #00695c; /* Deep teal color for headings */
}

h1 {
text-align: center;
font-size: 2em;
margin-bottom: 20px;
}

h2 {
font-size: 1.5em;
margin-top: 20px;
margin-bottom: 10px;
}

p {
line-height: 1.6;
margin-bottom: 15px;
}
58 changes: 58 additions & 0 deletions disclaimer/disclaimer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaming Tools - Disclaimer</title>
<link rel="stylesheet" href="disclaimer.css">
</head>
<body>
<!-- Header Placeholder -->
<header>
<!-- Add your header content here -->
</header>

<!-- Main Content -->
<main class="container">
<section class="disclaimer">
<h1>Disclaimer</h1>
<p>Welcome to Gaming Tools (the "Website"). The information provided on this Website, including all products, content, materials, and services, is for general informational and sales purposes only. By accessing and using this Website, you acknowledge and agree to the following terms and conditions.</p>

<h2>1. Product Information</h2>
<p>All products and accessories sold on this Website are intended for gaming purposes only...</p>

<h2>2. No Guarantees or Warranties</h2>
<p>Gaming Tools makes no guarantees, warranties, or representations, either express or implied...</p>

<h2>3. Limitation of Liability</h2>
<p>To the maximum extent permitted by law, Gaming Tools shall not be held liable for any direct, indirect...</p>

<h2>4. Use of Products</h2>
<p>The gaming tools and accessories offered on this Website are intended solely for responsible...</p>

<h2>5. Third-Party Links</h2>
<p>The Website may contain links to third-party websites for the convenience of our customers...</p>

<h2>6. No Endorsement</h2>
<p>Mention of any products, services, or companies on this Website does not imply endorsement...</p>

<h2>7. Modification of Disclaimer</h2>
<p>Gaming Tools reserves the right to modify this Disclaimer at any time without prior notice...</p>

<h2>8. Intellectual Property</h2>
<p>All content on this Website, including but not limited to text, graphics, logos, images, and software...</p>

<h2>9. Governing Law</h2>
<p>This Disclaimer and any disputes arising from your use of the Website or purchase of products...</p>

<h2>10. Contact Information</h2>
<p>If you have any questions or concerns regarding this Disclaimer or any aspect of the Website...</p>
</section>
</main>

<!-- Footer Placeholder -->
<footer>
<!-- Add your footer content here -->
</footer>
</body>
</html>
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -635,8 +635,13 @@ <h2>Legal Links</h2>
<li><a href="Policies/PrivacyPolicy/PrivacyPolicy.html">Privacy Policy</a></li>
<li><a href="#">Terms of Service </a></li>
<li><a href="#">Cookie Policy</a></li>
<li><a href="#">Disclaimer</a></li>

<li><a href="disclaimer/disclaimer.html">Disclaimer</a></li>



<li><a href="Policies/returnPolicy.html">Return Policy</a></li>

<li><a href="#">Copyright Notice</a></li>
</ul>
</div>
Expand Down