-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
56 lines (44 loc) · 1.87 KB
/
popup.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
<html>
<head>
<title>Carbon Footprint</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href=".\dashboard\assets\css\style.css">
<style>
body {
font-family: "Lato", sans-serif
}
.mySlides {
display: none
}
</style>
</head>
<body background="/images/background.jpg">
<!-- Footrpint Detector -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:800px" id="band">
<h2 class="w3-wide">Carbon Footprint Detector</h2>
<p class="w3-opacity"><i>1 GB of data from the internet emits 11 grams of
CO2-equivalents.</i></p>
<br>
<p id="Overall_footprint" class="w3-justify w3-center" style="background-color: rgb(196, 196, 196);"> Carbon
Footprint (gm)= Some
Number
</p>
<br>
<a class="btn btn-primary" href="./dashboard/index.html" target="_blank" rel="noopener noreferrer"
role="button">View
Dashboard</a>
<br>
<br>
<br>
<p class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400" id="message">You have spent duration and exchanged this much amount of data</p>
</div>
<script src="background.js"></script>
<script src="script.js"></script>
</body>
</html>