-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
38 lines (32 loc) · 1.09 KB
/
Copy pathhome.html
File metadata and controls
38 lines (32 loc) · 1.09 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
<!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/home.css">
<title>Home Page - Inventory Control</title>
</head>
<body>
<nav class="navbar background">
<div class="logo">
<h2>spCvl Inventory</h2>
</div>
<ul class="nav-list">
<li><a href="register.php">Register</a></li>
<li><a href="login.php">Login</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
<section class="firstsection">
<div class="box-main">
<h1 class="text-big" id="web">spCvl Inventory Control</h1>
<p class="text-small">
In this admin can view, store, delete, and also add the data. Suppliers can also add product details, but the admin can maintain suppliers' details as well.
</p>
</div>
</section>
<footer class="background">
<p class="text-footer">Copyright © - All rights reserved</p>
</footer>
</body>
</html>