-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.69 KB
/
index.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
<!DOCTYPE html>
<html>
<title>Inventory Management System</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="w3.css">
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<a href="#home" class="w3-bar-item w3-button"><b>DBMS</b> Inventory Management System</a>
<!-- Float links to the right. Hide them on small screens -->
<div class="w3-right w3-hide-small">
<a href="#projects" class="w3-bar-item w3-button">Home</a>
<a href="#about" class="w3-bar-item w3-button">About</a>
<a href="#contact" class="w3-bar-item w3-button">Logout</a>
</div>
</div>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide head-img" style="max-width:1500px;" id="home">
<img class="w3-image" src="E:\Inv Mgmt\pic1.jpg" alt="Architecture" width="1500" height="400">
<div class="w3-display-middle w3-margin-top w3-center">
<STYLE>A {text-decoration: none;} </STYLE>
<button type="button" class="button button1 w3-btn"><a href="customer_login.html">Customer</a></button>
<button type="button" class="button button2 w3-btn"><a href="salesemp_login.html">Showroom Sales Representative</a></button>
<button type="button" class="button button3 w3-btn"><a href="manager_login.html">Inventory Manager</a></button>
</div>
</header>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-16 footer">
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank" class="w3-hover-text-green">w3.css</a></p>
</footer>
</body>
</html>