-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.7 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Which Bin?</title>
<link rel="stylesheet" href="navbar.css"></link>
<link rel="stylesheet" href="home/indexstyle.css"></link>
<link rel="stylesheet" href="home/apple.css"></link> <!-- animation -->
<link rel="stylesheet" href="home/bottle.css"></link> <!-- animation -->
<link rel="stylesheet" href="home/cat.css"></link> <!-- animation -->
<link href="https://fonts.googleapis.com/css?family=Poiret+One|Abhaya+Libre|Work+Sans" rel="stylesheet">
</head>
<body>
<nav>
<a href="index.html"><img id="navimg" src="images/logosmall.png"></a>
<ul>
<li><a href="info/info.html">Information</a></li>
<li><a href="quiz/quiz.html">Quiz</a></li>
<li><a href="about/about.html">About Us</a></li>
</ul>
</nav>
<section id="main">
<form id="inputbox">
<input name="item" type="text" placeholder="What do you want to dispose of?">
<input type="submit" id="submitbutton" value="Search">
</form>
</section>
<section><p id="searchStr"></p>
<button type="submit" id="newSearchButton" class="hidden"> New Search </button>
</section>
<img id="apple" src="images/apple.png">
<img id="bottle" src="images/waterbottle.png">
<img id="cat" src="images/cat.png">
<section id="mainimages">
<div class="garbage">
<img src="images/compost.png">
<h3>GARBAGE</h3>
</div>
<div class="recycle">
<img src="images/Recycling.png">
<h3>RECYCLE</h3>
</div>
<div class="compost">
<img src="images/Garbage.png">
<h3>COMPOST</h3>
</div>
</section>
<script src="home/homeapp.js"></script>
</body>
</html>