-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclacu.html
More file actions
49 lines (42 loc) · 1.77 KB
/
clacu.html
File metadata and controls
49 lines (42 loc) · 1.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<link rel="stylesheet" href="calcu.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="clacu.html">Energy Calculator</a></li>
</ul>
</nav>
</header>
<section class="calculator">
<h2>Energy Source Calculator</h2>
<form id="energyCalculator">
<label for="location">Location:</label>
<input type="text" id="location" placeholder="Enter your location" required>
<label for="energyNeeds">Energy Needs (kWh/year):</label>
<input type="number" id="energyNeeds" placeholder="Enter your energy needs" required>
<label for="budget">Budget ($):</label>
<input type="number" id="budget" placeholder="Enter your budget" required>
<button type="submit">Calculate</button>
</form>
<div id="results">
<h3>Recommended Energy Source:</h3>
<p id="recommendedSource">-</p>
<h3>Estimated Cost:</h3>
<p id="estimatedCost">-</p>
</div>
</section>
<script src="js.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>