-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (63 loc) · 1.79 KB
/
index.html
File metadata and controls
70 lines (63 loc) · 1.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<!-- CSS reset file is included in the Head section of the HTML file -->
<link rel="stylesheet" type="text/css" href="./css/reset.css">
<!-- CSS file is linked to the HTML file in the Head section -->
<link rel="stylesheet" type="text/css" href="./css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fifth Street Kombucha</title>
</head>
<header>
</header>
<body>
<h1>Fifth Street Kombucha</h1>
<main>
</article>
<article class="flavors" article id="original">
<h4>Original</h4>
</article>
<article class="flavors" article id="ginger">
<h4>Ginger</h4>
</article>
<article class="flavors" article id="lemonLime">
<h4>Lemon Lime</h4>
</article>
<article class="flavors" article id="rasp">
<h4>Raspberry</h4>
</article>
<article class="flavors" article id="honeyLemon">
<h4>Honey Lemon</h4>
</article>
<article class="flavors" article id="bnb">
<h4>Black and Blue</h4>
</article>
<article class="flavors" article id="pomegranate">
<h4>Pomegranate</h4>
</article>
<article class="flavors" article id="hcrisp">
<h4>Honeycrisp</h4>
</article>
<article class="flavors" article id="kiwi">
<h4>Kiwi</h4>
</article>
</main>
</body>
<div id="drinkTruck">
Fifth Street & Oltorf<br>
Austin, TX 78704
</address>
</div>
<div id="cartoonBenefits">
</div>
<footer>
<nav>
<ul>
<li><a href="https://www.mayoclinic.org/healthy-lifestyle/consumer-health/expert-answers/kombucha-tea/faq-20058126">science</a></li>
<li><a href="https://www.paypal.me/danemiddleton">buy</a></li>
<li><a href="mailto:middletondane@gmail.com">contact</a></li>
</ul>
</nav>
</footer>
</html>