-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcc.html
66 lines (66 loc) · 2.77 KB
/
cc.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solar Panel Performance Dashboard</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your custom CSS file -->
</head>
<body>
<header>
<div class="container">
<img src="images/helios.jpg" alt="Solar Panel Performance Dashboard" class="logo"> <!-- Ensure the path to the logo image is correct -->
<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>
<li><a href="weather.html">Energy Trends</a></li>
<li><a href="cost.html">Cost-Cutting</a></li>
<li><a href="ei.html">Environmental Impact</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="intro">
<div class="container">
<h2>Welcome to the Solar Panel Performance Dashboard</h2>
<p>Monitor, analyze, and optimize your solar panel performance with real-time data and insightful analytics.</p>
<p>Please click the button below only if you have solar panels!</p>
<a href="dashboard.html" class="btn">Get Started</a>
</div>
</section>
<footer>
<div class="container">
<div class="footer-group left">
<h3>Resources</h3>
<ul>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<div class="footer-group right">
<h3>Support</h3>
<ul>
<li><a href="support.html">Support</a></li> <!-- Added link to Support page -->
<li><a href="terms.html">Terms and Conditions</a></li>
</ul>
</div>
</div>
</footer>
<footer>
<div class="container">
<p>© 2024 Helios. All rights reserved.</p>
</div>
</footer>
</body>
</html>