-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
57 lines (49 loc) · 1.62 KB
/
admin.html
File metadata and controls
57 lines (49 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/admin.css">
<title>Home page - Inventory Management</title>
</head>
<body>
<nav class="navbar">
<div class="logo">
<h2>spCvl_inventory</h2>
</div>
</nav>
<section class="firstsection">
<div class="box-main">
<h1 class="text-big">Product Categories</h1>
<p class="text-small">
Choose from the categories below to view available products:
</p>
<div class="charan">
<a href="watchesdisplay.php">
<img src="images/watch.jpg" alt="Watches">
<p>WATCHES</p>
</a>
<a href="bikesdisplay.php">
<img src="images/bike.jpg" alt="Bikes">
<p>BIKES</p>
</a>
<a href="electronicsdisplay.php">
<img src="images/electronic.jpg" alt="Electronics">
<p>ELECTRONICS</p>
</a>
<a href="booksdisplay.php">
<img src="images/book.jpg" alt="Books">
<p>BOOKS</p>
</a>
<a href="drinksdisplay.php">
<img src="images/drink.jpg" alt="Drinks">
<p>DRINKS</p>
</a>
</div>
</div>
</section>
<footer class="text-footer">
© 2024 spCvl_inventory. All Rights Reserved.
</footer>
</body>
</html>