Skip to content

Commit

Permalink
added disclaimer page
Browse files Browse the repository at this point in the history
  • Loading branch information
Adarsh-Chaubey03 committed Oct 21, 2024
1 parent 2c91895 commit 0fd50e3
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 0 deletions.
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>

0 comments on commit 0fd50e3

Please sign in to comment.