-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.html
49 lines (49 loc) · 2.01 KB
/
items.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
<!DOCTYPE html>
<html lang="en">
<header>
<title>Items Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet">
</header>
<body class="custom-body">
<div class="hero-image">
<a href="index.html" style="margin-top: 10px; float: right; margin-right: 10px; color: white;">logout</a>
<div class="centered">
<h1 class="items-title">Azouz's Kitchen</h1>
<p class="items-subtitle">A flavor you've never tasted before!</p>
</div>
</div>
<div class="centered table-responsive" style="margin-top: 150px">
<table class="content-table table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Image</th>
<th scope="col">Count</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cheese Burger</td>
<td><img src="burger.png" height="50px"></td>
<td>5</td>
</tr>
<tr>
<td>Cheese Burger with Bacon</td>
<td><img src="burger.png" height="50px"></td>
<td>3</td>
</tr>
<tr>
<td>Caramelized Onion Burger</td>
<td><img src="burger.png" height="50px"></td>
<td>7</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>