-
Notifications
You must be signed in to change notification settings - Fork 0
/
helloworld.html
60 lines (53 loc) · 1.49 KB
/
helloworld.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
<!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="style.css">
<title>helloworld</title>
<link rel="shortcut icon" type="image/jpg" href="bin-logo.png"/>
</head>
<body>
<h1>Find the nearest place for waste disposal</h1>
<div id="main">
<div id="map">
<img src="map.png" alt="Google Regional Map">
<h3>Cochin University of Science and Technology</h3>
</div>
<div id="list">
<h2>Waste Bins</h2>
<table class="table">
<tr>
<td>Sarovar Mens Hostel</td>
<td>65%</td>
</tr>
<tr>
<td>Department of Biotechnology</td>
<td>15.7%</td>
</tr>
<tr>
<td>Cafe CUSAT</td>
<td>5.6%</td>
</tr>
<tr>
<td>Advanced Centre for Atmospheric Radar</td>
<td>2.1%</td>
</tr>
<tr>
<td>CUSAT Restaurent</td>
<td>1.9%</td>
</tr>
<tr>
<td>Kochi Chaatwala</td>
<td>1.5%</td>
</tr>
</table><br>
</div>
</div>
<footer>
<h4>FOOTER</h4>
<p>Powered by <a href="https://github.com/DeVcB13d/Waste-Management-aided-by-image-analysis" target="_blank">helloworld</a></p>
</footer>
</body>
</html>