forked from ranjansharma255/ProjectX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwmsanalysis.html
More file actions
56 lines (51 loc) · 1.8 KB
/
Copy pathwmsanalysis.html
File metadata and controls
56 lines (51 loc) · 1.8 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
50
51
52
53
54
55
56
<!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">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/dashheader.css">
<link rel="stylesheet" href="css/graph.css">
<title>Project X</title>
</head>
<body>
<header>
<!-- <img class="logo img" src="img/logo.png" alt="logo"> -->
<a href="index.html" class="title">Project X</a>
<nav>
<div class="nav-links">
<h3>Name</h3>
<h5>Admin</h5>
</div>
<div class="photo">
<img src="images/user.png" alt="">
</div>
</nav>
</header>
<div class="main">
<div class="dashboard">
<h3>Dashboard</h3>
</div>
<div class="action-btns">
<button class="button-4" onclick="javascript:location.href='dashboard.html'">Power Analysis</button>
<button class=" button-4" onclick="javascript:location.href='wmsanalysis.html'">WMS Analysis</button>
<button class="button-4" onclick="javascript:location.href='energyanalysis.html'">Energy Analysis</button>
</div>
<div class="content">
<div class="sidebar">
<button class="button-8">Solar Irradiation</button>
<button class="button-8">Ambient Temp</button>
<button class="button-8">Module Temp</button>
</div>
<div class="rightbar">
<div class="graph">
</div>
</div>
</div>
</div>
<!-- <footer class="footer">
<p>© 2020. Doctors Appointment Application</p>
</footer> -->
</body>
</html>