-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.html
70 lines (69 loc) · 3.37 KB
/
features.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - Solar Panel Performance Dashboard</title>
<link rel="stylesheet" href="features.css"> <!-- Ensure this path is correct -->
</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="features">
<div class="container">
<h2>Features</h2>
<div class="feature">
<h3>Real-time Data Monitoring</h3>
<p>Stay updated with the latest performance metrics of your solar panels including energy output, efficiency, and environmental conditions in real-time.</p>
</div>
<div class="feature">
<h3>Historical Data Analysis</h3>
<p>Analyze past performance data with detailed graphs and charts. Identify trends and make informed decisions to optimize your solar energy system.</p>
</div>
<div class="feature">
<h3>User Authentication</h3>
<p>Secure login system to ensure that only authorized users can access the dashboard and view personalized data.</p>
</div>
<div class="feature">
<h3>Comprehensive Dashboard</h3>
<p>Access a complete dashboard that provides key performance indicators (KPIs) at a glance. Customize the dashboard to suit your needs.</p>
</div>
<div class="feature">
<h3>Alerts and Notifications</h3>
<p>Receive timely alerts and notifications for maintenance, performance issues, and system updates. Stay proactive in managing your solar panels.</p>
</div>
<div class="feature">
<h3>Data Export</h3>
<p>Easily export performance data into various formats for further analysis or reporting. Keep records of your solar panel performance with ease.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Helios. All rights reserved.</p>
</div>
</footer>
</body>
</html>