forked from swaraj-das/Collect-your-GamingTools
-
Notifications
You must be signed in to change notification settings - Fork 0
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 swaraj-das#628 from Adarsh-Chaubey03/main
Added `Disclaimer Page`
- Loading branch information
Showing
3 changed files
with
108 additions
and
1 deletion.
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,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; | ||
} |
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,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> |
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