-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.html
166 lines (144 loc) · 5.21 KB
/
about-us.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Energy Management System</title>
<style>
/* Global Styles */
:root {
--bg-color: #f5f5f5;
--text-color: #333;
--container-bg-color: #ffffff;
--section-bg-color: #e0f7fa;
--highlight-color: #00796b;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
margin: 0;
padding: 0;
}
.container1 {
width: 80%;
margin: 20px auto;
padding: 20px;
background-color: var(--container-bg-color);
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
font-weight: bold;
color: var(--text-color);
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
h2 {
font-size: 20px;
margin-top: 20px;
margin-bottom: 10px;
}
p {
font-size: 16px;
line-height: 1.6;
}
.section {
background-color: var(--section-bg-color);
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.section h2 {
margin-top: 0;
}
.highlight {
color: var(--highlight-color);
}
header {
background-color: #333;
color: white;
padding: 1rem 0;
}
header .container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 1rem;
}
header .logo a {
color: #fff;
font-size: 1.8rem;
text-decoration: none;
font-weight: bold;
}
header nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}
header nav ul li {
margin: 0 1rem;
}
header nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s;
}
header nav ul li a:hover {
color: #ff7e5f; /* Change color on hover */
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Energy consumption</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="energy-consumption.html">Energy Consumption</a></li>
<li><a href="peak-load-management.html">Peak Load Management</a></li>
<!-- <li><a href="real-time-monitoring.html">Real-Time Monitoring</a></li> -->
<li><a href="reports.html">Reports</a></li>
<li><a href="settings.html">Settings</a></li>
<li><a href="user-management.html">Users</a></li>
<li><a href="notifications.html">Notifications</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<div class="container1">
<h1>About Us</h1>
<div class="section">
<h2>Our Project</h2>
<p>
Our Energy Management System is a cutting-edge solution designed to optimize energy consumption and enhance efficiency in various settings. Using advanced technology and AI, our system offers real-time monitoring and predictive analytics to help users manage their energy usage effectively.
</p>
<p>
<span class="highlight">Key Features:</span>
<ul>
<li><strong>Real-time Monitoring:</strong> Track energy consumption in real-time to make informed decisions.</li>
<li><strong>Predictive Analytics:</strong> Utilize AI to forecast energy needs and optimize usage.</li>
<li><strong>Interactive Dashboard:</strong> Visualize energy data through interactive charts and graphs.</li>
<li><strong>Alerts and Notifications:</strong> Receive timely notifications about abnormal energy usage or system performance.</li>
<li><strong>User-Friendly Interface:</strong> Enjoy an intuitive and easy-to-navigate interface designed for users of all technical levels.</li>
</ul>
</p>
<p>
Our goal is to revolutionize how energy is managed and consumed, making it easier for businesses and individuals to achieve their energy goals while reducing waste and costs.
</p>
</div>
</div>
</body>
</html>