-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
74 lines (66 loc) · 3.28 KB
/
terms.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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 - Solar Panel Performance Dashboard</title>
<link rel="stylesheet" href="terms.css">
</head>
<body>
<header>
<div class="container">
<img src="images/helios.jpg" alt="Solar Panel Performance Dashboard" class="logo">
<nav>
<ul>
<li><a href="cc.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li class="dropdown">
<a href="features.html">Features ▾</a>
<ul class="dropdown-content">
<li><a href="advantages.html">Advantages</a></li>
<li><a href="video-insights.html">Video Insights</a></li>
</ul>
</li>
<li><a href="power-stats.html">Analytics</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
</ul>
</nav>
</div>
</header>
<section class="terms-conditions">
<div class="container">
<h1>Terms and Conditions</h1>
<div class="section">
<h2>Introduction</h2>
<p>Welcome to the Solar Panel Performance Dashboard. These Terms and Conditions govern your use of our website. By accessing or using our website, you agree to be bound by these Terms and Conditions.</p>
</div>
<div class="section">
<h2>Use of Website</h2>
<p>You agree to use our website only for lawful purposes and in a manner that does not infringe on the rights of, or restrict or inhibit anyone else’s use and enjoyment of the website.</p>
</div>
<div class="section">
<h2>Intellectual Property</h2>
<p>All content, trademarks, and other intellectual property on our website are the property of Solar Panel Performance Dashboard or its licensors. You may not use any of our intellectual property without our prior written consent.</p>
</div>
<div class="section">
<h2>Limitation of Liability</h2>
<p>We are not liable for any indirect, incidental, or consequential damages arising out of or in connection with your use of our website.</p>
</div>
<div class="section">
<h2>Privacy Policy</h2>
<p>Your privacy is important to us. Please review our Privacy Policy</a> to understand how we collect, use, and protect your information.</p>
</div>
<div class="section">
<h2>Contact Us</h2>
<p>If you have any questions or concerns about these Terms and Conditions, please contact us at <a href="mailto:heliosdashboard58@gmail.com">heliosdashboard58@gmail.com</a>.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Helios. All rights reserved.</p>
</div>
</footer>
</body>
</html>