-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathherbaltea.html
More file actions
42 lines (38 loc) · 1.61 KB
/
herbaltea.html
File metadata and controls
42 lines (38 loc) · 1.61 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Herbal Tea</title>
<link rel="stylesheet" type="text/css" href="assets/css/navbar.css">
<link rel="stylesheet" type="text/css" href="assets/css/herbaltea-style.css">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar HTML -->
<div class="nav-bar">
<div class="nav-bar-items">
<p id=home> <a href="index.html">HOME</a></p>
<p id=types> <a href="types.html">TYPES</a></p>
<p id=questions> <a href="questions.html">???</a></p>
<p id="rcorners1"></p>
</div>
</div>
<!-- Tea Types -->
<div class="content">
<div id="column1">
<div class="image">
<img src="assets/img/herbaltea.png" />
</div>
<h1>Herbal Tea</h1>
</div>
<div id="column2">
<div class="description">
<h2>Herbal teas (aka “tisanes”) aren’t technically “true” tea types, but they’re brewed and consumed in the same way. </h2>
<h2>They are the end product of infusing leaves, stems, bark, roots, or any portion of a plant in water to release its active ingredients. Steeping the herbs in hot water brings out the plants’ benefits, including natural flavoring and essential
oils. </h2>
</div>
<div id="button"> <a href="types.html">← Back</a></div>
</div>
</div>
</body>
</html>