-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
31 lines (31 loc) · 865 Bytes
/
tutorials.html
File metadata and controls
31 lines (31 loc) · 865 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tutorials - Renewable Energy</title>
<link rel="stylesheet" href="style.css" />
<style>
.hi {
color: aliceblue;
}
</style>
</head>
<body>
<header><h1>Learn About Renewable Energy</h1></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
</ul>
</nav>
<section>
<h2 class="hi">Select a Topic</h2>
<div class="button-container">
<a href="solar.html" class="btn">Solar Energy</a>
<a href="wind.html" class="btn">Wind Energy</a>
<a href="hydro.html" class="btn">Hydro Energy</a>
</div>
</section>
<a href="chatbot.html" class="chatbot-button">Ask Ecowatt AI 🤖</a>
</body>
</html>