-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.html
119 lines (112 loc) · 2.18 KB
/
inventory.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>Inventory Website</title>
<style>
body{
background-color:skyblue;
}
h1{
color: blueviolet;
text-align: center;
text-decoration: solid;
}
table{
margin: auto;
padding: 46px;
width:100%;
}
th,td{
padding:10px;
}
th{
background-color:darkblue;
color:black;
}
ul{
background-color: white;
padding: 20px;
}
ul,li,a{
text-decoration: solid;
}
li a:hover{
background-color: auto;
}
p{
font-size: 30px;
text-align: center;
padding: 10px;
}
footer{
text-align: center;
padding: 100px;
background-color: lightgreen;
color: black;
}
ul li {
display:inline;
padding :20px;
margin :20px;
font-size: 30px;
}
nav {
text-align: center;
border: 10px;
}
</style>
</head>
<body>
<header>
<h1>WELCOME TO MY INVENTORY 2.0</h1>
</header>
<nav >
<ul border =10>
<li><a href="#Order">ORDERS</a></li>
<li><a href="#List">List</a></li>
<li><a href="#Vendor">Check Vendors</a></li>
</ul>
</nav>
<aside>
<ul>
<li>geeksforgeeks</li>
<li>hh</li>
</ul>
</aside>
<section>
<table border =10>
<tr>
<th>Sl.No</th>
<th>ID</th>
<th>Product Name</th>
<th>Stock</th>
<th>Price</th>
</tr>
<tr>
<td>1</td>
<td>A54</td>
<td>Science text</td>
<td>100</td>
<td>80</td>
</tr>
<tr>
<td>2</td>
<td>A55</td>
<td>Maths text</td>
<td>120</td>
<td>150</td>
</tr>
<tr>
<td>3</td>
<td>A56</td>
<td>English text</td>
<td>101</td>
<td>70</td>
</tr>
</table>
</section>
<footer>
<p><b>Contact Us : +91 900657877</b></p>
</footer>
</body>
</html>