Add Terms and Conditions page and link from the main site
This commit is contained in:
parent
5a1470934f
commit
e77325c60d
12
index.html
12
index.html
|
@ -35,8 +35,8 @@
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
iframe {
|
iframe {
|
||||||
width: 80%;
|
width: 960px; /* 800px + 20% */
|
||||||
height: 60vh;
|
height: 660px; /* 550px + 20% */
|
||||||
border: none;
|
border: none;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
||||||
|
@ -66,6 +66,11 @@
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
.footer a {
|
||||||
|
color: #3498db;
|
||||||
|
text-decoration: none;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CC1B9CQ691"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CC1B9CQ691"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -88,7 +93,8 @@
|
||||||
<button onclick="window.open('https://rebrand.ly/csmsgaia', '_blank')">View on Gaia GPS</button>
|
<button onclick="window.open('https://rebrand.ly/csmsgaia', '_blank')">View on Gaia GPS</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<p>© 2024 Inovin LLC. All rights reserved.</p>
|
<p>© 2024 Daniel LaForce. All rights reserved.</p>
|
||||||
|
<p><a href="terms.html">Terms and Conditions</a></p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -0,0 +1,51 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Terms and Conditions</title>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Roboto', sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
background-color: #ffffff;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
color: #2c3e50;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h2>Terms and Conditions</h2>
|
||||||
|
<p>Welcome to CSMS Claims and Neighbors. By accessing or using our website, you agree to comply with and be bound by the following terms and conditions. Please read them carefully.</p>
|
||||||
|
<h3>Use of Information</h3>
|
||||||
|
<p>The locations of mining claims provided on this website are for informational purposes only. Users are prohibited from downloading, distributing, or creating derivative works from the provided KML files or any other map data.</p>
|
||||||
|
<h3>Restrictions</h3>
|
||||||
|
<ul>
|
||||||
|
<li>No Redistribution: Users may not download KML files or other map data to create their own maps on Google Maps or any other mapping service.</li>
|
||||||
|
<li>No Commercial Use: The information provided on this website is intended for personal use only and may not be used for commercial purposes without prior written consent.</li>
|
||||||
|
<li>No Unauthorized Access: Users may not attempt to gain unauthorized access to any part of our website or data.</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Intellectual Property</h3>
|
||||||
|
<p>All content on this website, including but not limited to text, graphics, logos, and software, is the property of CSMS Claims and Neighbors and is protected by intellectual property laws.</p>
|
||||||
|
<h3>Limitation of Liability</h3>
|
||||||
|
<p>CSMS Claims and Neighbors is not responsible for any errors or omissions in the information provided, nor for any losses or damages resulting from the use of this information.</p>
|
||||||
|
<h3>Amendments</h3>
|
||||||
|
<p>We reserve the right to modify these terms and conditions at any time. Any changes will be posted on this page.</p>
|
||||||
|
<h3>Contact Information</h3>
|
||||||
|
<p>If you have any questions or concerns about these terms and conditions, please contact us at [your contact information].</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue