forked from UMSIComplexWebDesign/week2discussion
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtea.html
More file actions
34 lines (32 loc) · 1.28 KB
/
tea.html
File metadata and controls
34 lines (32 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Teas</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href="tea.html">Tea Page</a></li>
<li><a href="coffee.html">Coffee Page</a></li>
</ul>
</nav>
<h1>Week Three discussion</h1>
<img src = "images/cover_image.jpg" width="800" alt = "">
</header>
<main>
<img src="images/black_tea.jpg" width = "200" alt="fancy tea mug with black_tea">
<img src="images/chai_tea.jpg" width = "200" alt="an indian chai">
<img src="images/english_breakfast.jpg" width = "200" alt="a dark tea option">
<img src="images/green_tea.jpg" width = "200" alt="a loose leaf green tea">
<img src="images/lemon_ginger_tea.jpg" width = "200" alt="light tea with lemon and ginger">
<img src="images/tea_collection.jpg" alt="collection of loose leaf tea">
<img src="images/long_island_ice_tea.jpg" alt="a icy Long Island tea (alcoholic)">
</main>
</body>
</html>