-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 797 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (24 loc) · 797 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>
<head>
<title>
Coffee Shop Menu
</title>
<link href="style.css" rel="stylesheet"></link>
</head>
<body>
<h1 id="heading">Coffee Shop Menu</h1>
<div>
<img class="coffee_img" id="img1" src="img1.webp">
<img class="coffee_img" id="img2" src="img2.webp">
<img class="coffee_img" id="img3" src="img3.jpg">
<p class="menu_item">• Cappuccino</p>
<p class="menu_item">• Latte</p>
<p class="menu_item">• Espresso</p>
<p class="menu_item">• Americano</p>
<p class="menu_item">• Mocha</p>
<p class="menu_item">• Cortado</p>
</div>
<script src="script.js"></script>
</body>
</html>