-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 779 Bytes
/
index.html
File metadata and controls
25 lines (21 loc) · 779 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza Menu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="main-title">Welcome to My Pizza Place</h1>
<p id="description">We offer the best pizzas in town!</p>
<div id="pizza-list">
<p class="pizza">Pepperoni Pizza</p>
<img class="pizza-img" src="images/pepperoni.png" alt="Pepperoni Pizza">
<p class="pizza">Veggie Pizza</p>
<img class="pizza-img" src="images/veggie.png" alt="Veggie Pizza">
<p class="pizza">BBQ Chicken Pizza</p>
<img class="pizza-img" src="images/BBQchicken.png" alt="BBQ Chicken Pizza">
</div>
</body>
</html>