This repository has been archived by the owner on Nov 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptimise.html
63 lines (63 loc) · 2.04 KB
/
optimise.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Visarkh
</title>
<link rel="stylesheet" href="./main.css">
<link rel="icon" href="./assets/images/logo.png">
</head>
<body>
<div class="nav">
<div class="logo"></div>
<ul style="margin-left: 85%;">
<li>
<a href="#a">About</a>
</li>
<li>
<a href="./index.html">Home</a>
</li>
</ul>
</div>
<div class="optimization-div">
<h1 id="a">
Why our <span>algorithm</span>?
</h1>
<p>
Our algorithm uses live real-time data from advanced sensors placed on electrical devices to calibrate <br>
parameters and accordingly determines the optimal usage for electricity
</p>
</div>
<div class="optimization-form">
<div class="optimize">
<div class="optimize-form-grp">
<label for="">
Electricity rate
</label><br>
<input type="text" placeholder="Electricity rate" id="input1">
</div> <br>
<div class="optimize-form-grp">
<label for="">
No. of solar panels installed
</label><br>
<input type="text" placeholder="Solar Panels" id="input2">
</div><br>
<div class="optimize-form-grp">
<label for="">
Operating cost of solar panels
</label><br>
<input type="text" placeholder="Cost" id="input3">
</div><br>
<button onclick="algoget()" id="submit" >
Optimize
</button>
</div>
<img src="./assets/images/green-electricity.png" id="greenbulb" alt="">
</div>
<div class="optimize-info"></div>
</body>
<script src="./app.js"></script>
</html>