-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblacktea.html
More file actions
42 lines (38 loc) · 1.73 KB
/
blacktea.html
File metadata and controls
42 lines (38 loc) · 1.73 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>Black Tea</title>
<link rel="stylesheet" type="text/css" href="assets/css/navbar.css">
<link rel="stylesheet" type="text/css" href="assets/css/blacktea-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/blacktea.png" />
</div>
<h1>Black Tea</h1>
</div>
<div id="column2">
<div class="description">
<h2>Black tea is derived from the Carmellia Sinensis plant — leaves of the plant are crushed, curled, rolled, or torn before being left to oxidize. After they have completely dried, they are packaged and sold.</h2>
<h2>The fully oxidized leaves are what primarily account for black tea’s strong, and dark flavor profile. Though the oxidation process decreases black tea’s flavor content a bit, the brew still has plenty of beneficial properties — such as
anti-oxidation, and the ability to lower blood pressure!</h2>
</div>
<div id="button"> <a href="types.html">← Back</a></div>
</div>
</div>
</body>
</html>