-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorders.html
More file actions
30 lines (30 loc) · 754 Bytes
/
orders.html
File metadata and controls
30 lines (30 loc) · 754 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Orders</title>
<link rel="stylesheet" href="/styles/css/main.css">
<link rel="stylesheet" href="/styles/css/generic.css">
</head>
<body>
<h1>Orders</h1>
<hr>
<h2>🍕 Pizza</h2>
<ul>
<li>Ham & Mushroom</li>
<li>Pepperoni</li>
<li>Margherita</li>
</ul>
<blockquote>"No One OutPizzas The Hut"<cite>Pizza Hut</cite></blockquote>
<hr>
<h2>🌯 Burrito</h2>
<ul>
<li>Black Beans</li>
<li>Beef / Pork / Chicken</li>
<li>Cheese</li>
<li>Sour Cream</li>
<li>Guacamole</li>
</ul>
</body>
</html>