-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch2.html
More file actions
198 lines (182 loc) · 5.3 KB
/
search2.html
File metadata and controls
198 lines (182 loc) · 5.3 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/search.css" />
<title>search waste item</title>
</head>
<style>
#myInput {
background-position: 10px 12px;
/* Position the search icon */
background-repeat: no-repeat;
/* Do not repeat the icon image */
width: 100%;
/* Full-width */
font-size: 16px;
/* Increase font-size */
padding: 12px 20px 12px 40px;
/* Add some padding */
border: 1px solid #ddd;
/* Add a grey border */
margin-bottom: 12px;
/* Add some space below the input */
}
#myTable {
position: relative;
border-collapse: collapse;
/* Collapse borders */
width: 100%;
/* Full-width */
border: 1px solid #ddd;
/* Add a grey border */
font-size: 18px;
/* Increase font-size */
z-index: 3;
color: rgb(238, 255, 3);
}
#myTable th {
color: darkblue;
}
#myTable th,
#myTable td {
text-align: left;
/* Left-align text */
padding: 12px;
/* Add padding */
}
#myTable tr {
/* Add a bottom border to all table rows */
border-bottom: 1px solid #ddd;
}
#myTable tr.header,
#myTable tr:hover {
/* Add a grey background color to the table header and on hover */
background-color: #f1f1f1;
}
</style>
<body>
<nav class="navbar2">
<div class="image"><img src="images/logo.jpg" alt="" /></div>
<a href="index.html">Home</a>
<a href="search2.html">Search</a>
<a href="recycle.html">Recycle</a>
<a href="contact.html">Contact us</a>
</nav>
<div class="main">
<div class="search-city">
<h1 class="city"><span>SEARCH</span> FOR WASTE ITEMS</h1>
</div>
<!-- Search-Box -->
<section>
<div class="search-container">
<input
type="text"
id="myInput"
onkeyup="myFunction()"
placeholder="Waste material"
/>
<button type="submit"><i class="bx bx-search-alt-2"></i></button>
</div>
<!-- Table-Data -->
<section id="table-data">
<table id="myTable">
<tr class="header">
<th style="width: 27%;">WASTE MATERIALS</th>
<th style="width: 60%;">RECYCLING METHODS</th>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td>Plastic Bottels </td>
<td>Vertical Garden</td>
</tr>
<tr>
<td>Plastic Bottels </td>
<td>Hanging Chandelier</td>
</tr>
<tr>
<td>Plastic Bottels </td>
<td>Parking Canopy</td>
</tr>
<tr>
<td>Plastic Bottels </td>
<td>Cute Planters</td>
</tr>
<tr>
<td>Plastic Bottels </td>
<td>Bird Feeder</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Bottle planters </td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Pet Feeder</td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Seedlings plant protector </td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Table Centerpiece </td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Tiki Torch </td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Desk Organizer</td>
</tr>
<tr>
<td>Glass bottels</td>
<td>Diy Terrarium </td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td>Magzine </td>
<td>Picture Frames </td>
</tr>
<tr>
<td>Magzine </td>
<td>Decorative Bowls </td>
</tr>
<tr>
<td>Magzine </td>
<td>Paper flower </td>
</tr>
<tr>
<td>Magzine </td>
<td>Goody bags </td>
</tr>
<tr>
<td>Magzine </td>
<td>Storage box</td>
</tr>
</table>
</section>
<!-- Background theme -->
<div class="ripple-background">
<div class="circle xxlarge shade1"></div>
<div class="circle xlarge shade2"></div>
<div class="circle large shade3"></div>
<div class="circle mediun shade4"></div>
<div class="circle small shade5"></div>
</div>
</section>
</div>
<!-- JavaScript -->
<script src="app.js"></script>
</body>
</html>