-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreentea.html
More file actions
42 lines (38 loc) · 1.76 KB
/
greentea.html
File metadata and controls
42 lines (38 loc) · 1.76 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>Green Tea</title>
<link rel="stylesheet" type="text/css" href="assets/css/navbar.css">
<link rel="stylesheet" type="text/css" href="assets/css/greentea-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/greentea.png" />
</div>
<h1>Green Tea</h1>
</div>
<div id="column2">
<div class="description">
<h2>Green tea is prepared from the fresh, or withered, lightly heated/steamed leaves of the Camellia Stinensis plant. Unlike Black tea, this preparation stops the oxidation process and accounts for Green tea’s flavor profile — one that’s light,
fresh, and maybe a little bit grassy.</h2>
<h2>Many different Green teas may have slightly different flavors that can range from nutty, to fruity, to seaweed-like (ex: matcha, sencha, hojicha). These flavors are usually dependent on where the tea was grown, as well as how it was processed.</h2>
</div>
<div id="button"> <a href="types.html">← Back</a></div>
</div>
</div>
</body>
</html>