forked from vaghasiyautsav/LabInventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfridgelist.html
52 lines (47 loc) · 1.66 KB
/
fridgelist.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
<!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="style.css">
<title>Fridges</title>
<style>
.fridgeList {
border: 1px solid black;
padding: 10px;
position: relative;
top: 10px;
display: flex;
flex-direction: row;
gap: 1rem;
}
.fridgeButton {
display: inline-block;
width: 80px;
}
</style>
</head>
<body>
<div class="global-navbar">
<ul id="menubaritems">
<li class="menubarblocks"><a href="index.html">Home</a></li>
<li class="menubarblocks"><a href="fridgelist.html">Fridge List</a></li>
<li class="menubarblocks"><a href="freezerList.html">Freezer List</a></li>
<li class="menubarblocks"><a href="feedback.html">Feedback</a></li>
<li class="menubarblocks"><a href="aboutUs.html">About Us</a></li>
</ul>
</div>
<div class="fridgeList">
<button class="fridgeButton" id="fridge1"><a href="./Fridge1.html">Fridge 1</a></button>
<button class="fridgeButton" id="fridge2">Fridge
2</button>
<button class="fridgeButton" id="fridge3">Fridge 3</button>
<button class="fridgeButton"
id="fridge4">Fridge 4</button>
<button class="fridgeButton" id="fridge5">Fridge 5</button>
</div>
<div class="chnages">
<!-- Can git keep the track of the changes made here. Lets See -->
</div>
</body>
</html>