-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (136 loc) · 3.56 KB
/
index.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> 😁Ray's Personal Website</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="images/milktea01.jpg" alt="Brown Sugar Milk Tea"></td>
<td>
<h1>RAY TRAN</h1>
<p> <i>I am a new student of coding. <strong>I am a tea lover and the owner <a href="https://www.fengchausa.com/" target="_blank">Fang Cha Tea</a></strong>.</i></p>
<p>I am a furture Web Developer. I love milk tea, and also i brew my own tea.</p>
<p><a href="contact.html" target="_blank">Contact Information</a></p>
</td>
</tr>
</table>
<hr>
<!-- THIS FIRST HTML ON ORDERLIST AND UNORDER
<h3>Milk Tea Lab Favorites</h3>
<ul>
<li><a href="https://www.fengchausa.com/products" target="_blank">M.T.L Special Mix </a>
<ol type="i">
<li>Honey Lemon Aloe
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Matcha Tea Latte
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Matcha Smoothie
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Strawberry Smoothie
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
</ol>
</li>
<li><a href="https://www.fengchausa.com/products" target="_blank">Milk Teas </a>
<ol type=i>
<li>Classic Milktea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Roasted Milktea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Jasmine Milktea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Matcha Milktea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
</ol>
</li>
<li><a href="https://www.yelp.com/biz/feng-cha-teahouse-%E5%A5%89%E8%8C%B6-newark-2" target="_blank">Flavored Tea</a>
<ol type="i">
<li>Honey Lemon Green Tea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Peach Green Tea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Mango Green Tea
<ol>
<li>Regular</li>
<li>Large</li>
</ol>
</li>
<li>Kimquat Green Tea
<ol>
<li> Regular</li>
<li>Large</li>
</ol>
</li>
</ol>
</li>
</ul>
THIS IS THE END OF FIRST CHAPTER HTML-->
<!--THE SECOND LEVEL OF HTML-->
<h3>Mission</h3>
<ul>
<li>Comfortable Environment: We want our customers to be able to unwind and feel at home in our stores.</li>
<li>Mood Boosting: We make our drinks how customers want them: down to the detail. </li>
<li>Social Hangouts: Feng Cha Teahouse is the place to be for socialites. Our inclusive environment ensures that everyone can bond over the joy of tea.</li>
</ul>
<hr>
<h3> Special Tea Mix</h3>
<table cellspacing="5">
<thead>
<tr>
<td>Roasted Milk Tea</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
</thead>
<tr>
<td>Jasmine Milk Tea</td>
<td>⭐️⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Lemon Apple Juice</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
</table>
<hr>
</body>
</html>