-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototype.html
89 lines (83 loc) · 2.51 KB
/
prototype.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hope Restored Inventory </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>Hope Restored Mission </h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Inventory</a></li>
<li><a href="#">Donations</a></li>
<li><a href="#">Reports</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- Main Content Section -->
<main>
<!-- Dashboard Overview -->
<section id="dashboard">
<h2>Dashboard</h2>
<div class="stats-container">
<div class="stat-box">
<h3>Clothes</h3>
<p>100 items</p>
</div>
<div class="stat-box">
<h3>Food</h3>
<p>250 items</p>
</div>
<div class="stat-box">
<h3>Shoes</h3>
<p>75 pairs</p>
</div>
</div>
</section>
<!-- Inventory Table -->
<section id="inventory">
<h2>Inventory</h2>
<table>
<thead>
<tr>
<th>Item Category</th>
<th>Item Name</th>
<th>Quantity</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>Clothes</td>
<td>Jackets</td>
<td>50</td>
<td>Available r</td>
</tr>
<tr>
<td>Food</td>
<td>Water Bottles</td>
<td>200</td>
<td>Low Stock</td>
</tr>
<tr>
<td>Shoes</td>
<td>Flats</td>
<td>20</td>
<td>Out of Stock</td>
</tr>
</tbody>
</table>
</section>
<!-- Footer Section -->
</main>
<footer>
<p>© 2024 Homeless Shelter Inventory. All rights reserved.</p>
</footer>
</body>
</html>