forked from zero-to-mastery/recycling-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 763 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Recycling Tracker</title>
<link rel="shortcut icon" href="media/recycle_symbol.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
</head>
<body>
<div class="container">
<img class="recycle_symbol" src="media/recycle_symbol.png">
<div class="title">
<h1>Recycling Tracker</h1>
<p>Thank you for saving our environment!</p>
<img src="media/reuse.jpg" alt="">
</div>
<img class="recycle_symbol" src="media/recycle_symbol.png">
</div>
<div class ="info">
<p>
Project dedicated to saving the world.
</p>
</div>
</body>
</html>