-
Notifications
You must be signed in to change notification settings - Fork 2
/
points_2.html
103 lines (103 loc) · 2.7 KB
/
points_2.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
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
<!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="stylesheet.css">
<link rel="stylesheet" href="points.css">
<title>Document</title>
</head>
<body>
<header>
<div class="container">
<div class="header-left">
<a href="index_2.html">
<h3 class="logo">Trash Cash</h3>
</a>
</div>
<div class="header-icon">
<span class="fa fa-bars menu-icon"></span>
</div>
<div class="header-right">
<a href="about_2.html">About Us</a>
<a href="points_2.html">Points</a>
<a href="pickup_2.html">Pickup</a>
<a href="profile.html" class="profile">Profile</a>
</div>
</div>
</header>
<div class="points">
<section>
<h1>POINT SYSTEM</h1>
<div class="tbl-header">
<table cellpadding="0" cellspacing="0" border="0">
<thead>
<tr>
<th>S.No</th>
<th>Item</th>
<th>Points</th>
</tr>
</thead>
</table>
</div>
<div class="tbl-content">
<table cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr>
<td>1</td>
<td>ORGANIC MATERIALS </td>
<td>10</td>
</tr>
<tr>
<td>2</td>
<td>POLYETHENE</td>
<td>10</td>
</tr>
<tr>
<td>3</td>
<td>PLASTIC BOTTLE</td>
<td>20</td>
</tr>
<tr>
<td>4</td>
<td>CLOTH MATERIALS</td>
<td>20</td>
</tr>
<tr>
<td>5</td>
<td>OTHER</td>
<td>20</td>
</tr>
<tr>
<td>6</td>
<td>GLASS BOTTLES</td>
<td>30</td>
</tr>
<tr>
<td>7</td>
<td>PAPER WASTE</td>
<td>30</td>
</tr>
<tr>
<td>8</td>
<td>METAL WASTE</td>
<td>40</td>
</tr>
<tr>
<td>9</td>
<td>PLASTIC ITEMS </td>
<td>40</td>
</tr>
<tr>
<td>10</td>
<td>E-WASTE</td>
<td>80</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</body>
</html>