-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchart.html
69 lines (63 loc) · 2.4 KB
/
chart.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
<!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="icon" type="image/x-icon" href="/images/dustbin1.png">
<script src="https://kit.fontawesome.com/d0c3a1cd55.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/help.css">
<link rel="stylesheet" href="./css/common.css">
<title>Green</title>
</head>
<body>
<section class="dashboard">
<!-- header -->
<header class="dashboard_header">
<div class="logo">
<img src="./images/dustbin1.png" class="bin-logo" alt="bin">
</div>
<h1 class="title-time">Capacity Counter And Graph</h1>
<!-- <i class="fa fa-user-vneck"></i> -->
<button class="logout-btn" id="logout-btn">
LOGOUT
</button>
</header>
<nav>
<ul class="nav-links">
<li>
<a href="homepage.html">Home</a>
</li>
<li>
<a href="contact.html">Contact us</a>
</li>
<li>
<a href="about.html">About us</a>
</li>
<li>
<a href="chart.html">Chart</a>
</li>
</ul>
</nav>
<!-- main -->
<div class="ast">
<main class="home">
<iframe width="450" height="260" style="border: 1px solid #cccccc;"
src="https://thingspeak.com/channels/1712416/charts/1?bgcolor=%23000&color=%23d62020&days=10&dynamic=true&results=60×cale=10&title=Capacity+vs+Time&type=bar"></iframe>
<iframe width="450" height="260" style="border: 1px solid #cccccc;"
src="https://thingspeak.com/channels/1712416/widgets/452575"></iframe>
</main>
</div>
<!-- footer -->
<footer class="dashboard_footer">
<div class="footer-left">
<p>Made by : Sadrealam Ahmed</p>
</div>
<div class="footer-right" id="footer-right">
<a href="https://github.com/sadre1" target="_blank"><i class="fa fa-github ans fa-2x"></i></a>
</div>
</footer>
</section>
<script src="app.js"></script>
</body>
</html>