Skip to content

Commit dfb45b2

Browse files
committed
ex2
1 parent c47e1a0 commit dfb45b2

File tree

9 files changed

+150
-6
lines changed

9 files changed

+150
-6
lines changed

exercise_1/index.html

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!DOCTYPE html>
12
<html>
23

34
<head>
@@ -6,11 +7,11 @@
67

78
<body>
89
<div style="width: 1550px; margin: auto; padding-top: 10px;">
9-
<h2 style="text-align: center; background-color: A52A2A; color: white">Welcome to the Coffee Shop</h2>
10-
<hr style="height: 3px; background-color: 808080;">
11-
<hr style="height: 3px; background-color: 808080;">
10+
<h1 style="text-align: center; background-color: #A52A2A; color: white">Welcome to the Coffee Shop</h1>
11+
<hr style="height: 3px; background-color: #808080;">
12+
<hr style="height: 3px; background-color: #808080;">
1213
<h3 style="text-align: center;">Coffee</h3>
13-
<p style="color: A52A2A;">
14+
<p style="color: #A52A2A;">
1415
Coffee is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the Coffea
1516
plant.<br>
1617
The genus Coffea is native to tropical Africa (specifically having its origin in Ethiopia and Sudan) and
@@ -24,8 +25,8 @@ <h3 style="text-align: center;">Coffee</h3>
2425
flavor.<br>
2526
Roasted beans are ground and brewed with near-boiling water to produce coffee as a beverage.<br>
2627
</p>
27-
<hr style="height: 3px; background-color: 808080;">
28-
<hr style="height: 3px; background-color: 808080;">
28+
<hr style="height: 3px; background-color: #808080;">
29+
<hr style="height: 3px; background-color: #808080;">
2930
<h3 style="text-align: center;">Tea</h3>
3031
<p style="text-align: right; color: blue;">
3132
Coffee is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the Coffea

exercise_2/coffee/coffee.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>The Coffee Menu</title>
6+
</head>
7+
8+
<body>
9+
<div style="width: 1250px; margin: auto; padding-top: 10px;">
10+
<h1 style="text-align: center; background-color: red; color: white">THE COFFEE MENU</h1>
11+
<hr style="height: 3px; background-color: #808080;">
12+
<h3>List of coffee</h3>
13+
<ul style="font-size: larger;" type="circle">
14+
<li>Black coffee</li>
15+
<li>White coffee</li>
16+
<li>Pink coffee</li>
17+
<li>Yellow coffee</li>
18+
</ul>
19+
<hr style="height: 3px; background-color: #808080;">
20+
<a href="../index.html">Click để về trang Index</a><br>
21+
<a href="../tea/tea.html">Click để tới trang Tea</a>
22+
<hr style="height: 3px; background-color: #808080;">
23+
<img src="../img/milk coffee.png" width="40%">
24+
<img src="../img/fruit.jpg" width="40%">
25+
<p style="text-align: center; color: blue;">
26+
Coffee is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the Coffea
27+
plant.<br>
28+
The genus Coffea is native to tropical Africa (specifically having its origin in Ethiopia and Sudan) and
29+
Madagascar, the Comoros, Mauritius, and Réunion in the Indian Ocean.<br>
30+
The plant was exported from Africa to countries around the world.<br>
31+
Coffee plants are now cultivated in over 70 countries, primarily in the equatorial regions of the Americas,
32+
Southeast Asia, India, and Africa.<br>
33+
<b>The two most commonly grown are arabica and robusta.</b><br>
34+
Once ripe, coffee berries are picked, processed, and dried.<br>
35+
Dried coffee seeds (referred to as beans) are roasted to varying degrees, depending on the desired
36+
flavor.<br>
37+
Roasted beans are ground and brewed with near-boiling water to produce coffee as a beverage.<br>
38+
</p>
39+
</div>
40+
</body>
41+
42+
</html>

exercise_2/img/coffee.jpg

244 KB
Loading

exercise_2/img/fruit.jpg

94.6 KB
Loading

exercise_2/img/milk coffee.png

471 KB
Loading

exercise_2/img/milk tea.jpg

39.5 KB
Loading

exercise_2/img/tea.png

1.77 MB
Loading

exercise_2/index.html

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>Welcome to the Coffee Shop</title>
6+
</head>
7+
8+
<body>
9+
<div style="width: 1550px; margin: auto; padding-top: 10px;">
10+
<h1 style="text-align: center; background-color: #A52A2A; color: white">Welcome to the Coffee Shop</h1>
11+
<hr style="height: 3px; background-color: #808080;">
12+
<a href="#coffee">Click để tìm hiểu về coffee</a><br>
13+
<a href="#tea">Click để tìm hiểu về tea</a>
14+
<hr style="height: 3px; background-color: #808080;">
15+
<h3 id="coffee" style="text-align: center;">Coffee</h3>
16+
<p style="color: #A52A2A;">
17+
Coffee is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the Coffea
18+
plant.<br>
19+
The genus Coffea is native to tropical Africa (specifically having its origin in Ethiopia and Sudan) and
20+
Madagascar, the Comoros, Mauritius, and Réunion in the Indian Ocean.<br>
21+
The plant was exported from Africa to countries around the world.<br>
22+
Coffee plants are now cultivated in over 70 countries, primarily in the equatorial regions of the Americas,
23+
Southeast Asia, India, and Africa.<br>
24+
The two most commonly grown are arabica and robusta.<br>
25+
Once ripe, coffee berries are picked, processed, and dried.<br>
26+
Dried coffee seeds (referred to as beans) are roasted to varying degrees, depending on the desired
27+
flavor.<br>
28+
Roasted beans are ground and brewed with near-boiling water to produce coffee as a beverage.<br>
29+
</p>
30+
<hr style="height: 3px; background-color: #808080;">
31+
<a href="./coffee/coffee.html">View coffee menu</a>
32+
<img src="./img/coffee.jpg" width="1550">
33+
<hr style="height: 3px; background-color: #808080;">
34+
<h3 id="tea" style="text-align: center;">Tea</h3>
35+
<p style="text-align: right; color: blue;">
36+
Coffee is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the Coffea
37+
plant.<br>
38+
The genus Coffea is native to tropical Africa (specifically having its origin in Ethiopia and Sudan) and
39+
Madagascar, the Comoros, Mauritius, and Réunion in the Indian Ocean.<br>
40+
The plant was exported from Africa to countries around the world.<br>
41+
Coffee plants are now cultivated in over 70 countries, primarily in the equatorial regions of the Americas,
42+
Southeast Asia, India, and Africa.<br>
43+
The two most commonly grown are arabica and robusta.<br>
44+
Once ripe, coffee berries are picked, processed, and dried.<br>
45+
Dried coffee seeds (referred to as beans) are roasted to varying degrees, depending on the desired
46+
flavor.<br>
47+
Roasted beans are ground and brewed with near-boiling water to produce coffee as a beverage.<br>
48+
</p>
49+
<hr style="height: 3px; background-color: #808080;">
50+
<a href="./tea/tea.html">View tea menu</a>
51+
<img src="./img/tea.png" width="1550">
52+
</div>
53+
</body>
54+
55+
</html>

exercise_2/tea/tea.html

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>The Tea Menu</title>
6+
</head>
7+
8+
<body>
9+
<div style="width: 1250px; margin: auto; padding-top: 10px;">
10+
<h1 style="text-align: center; background-color: red; color: white">THE TEA MENU</h1>
11+
<hr style="height: 3px; background-color: #808080;">
12+
<h3>List of tea</h3>
13+
<ol style="font-size: larger;">
14+
<li>Black coffee</li>
15+
<li>White coffee</li>
16+
<li>Pink coffee</li>
17+
<li>Yellow coffee</li>
18+
</ol>
19+
<hr style="height: 3px; background-color: #808080;">
20+
<a href="../index.html">Click để về trang Index</a><br>
21+
<a href="../coffee/coffee.html">Click để tới trang Coffee</a>
22+
<hr style="height: 3px; background-color: #808080;">
23+
<img src="../img/tea.png" width="40%" border="10">
24+
<img src="../img/milk tea.jpg" width="40%" border="10">
25+
<p style="text-align: justify; font-size: x-large; color: red;">
26+
Coffee is a brewed drink prepared from roasted coffee beans, which are the seeds of berries from the Coffea
27+
plant. The genus Coffea is native to tropical Africa (specifically having its origin in Ethiopia and Sudan)
28+
and Madagascar, the Comoros, Mauritius, and Réunion in the Indian Ocean. The plant was exported from Africa
29+
to countries around the world. Coffee plants are now cultivated in over 70 countries, primarily in the
30+
equatorial regions of the Americas, Southeast Asia, India, and Africa. The two most commonly grown are
31+
arabica and robusta. Once ripe, coffee berries are picked, processed, and dried. Dried coffee seeds
32+
(referred to as beans) are roasted to varying degrees, depending on the desired flavor. Roasted beans are
33+
ground and brewed with near-boiling water to produce coffee as a beverage. Coffee is a brewed drink prepared
34+
from roasted coffee beans, which are the seeds of berries from the Coffea plant. The genus Coffea is native
35+
to tropical Africa (specifically having its origin in Ethiopia and Sudan) and Madagascar, the Comoros,
36+
Mauritius, and Réunion in the Indian Ocean. The plant was exported from Africa to countries around the
37+
world. Coffee plants are now cultivated in over 70 countries, primarily in the equatorial regions of the
38+
Americas, Southeast Asia, India, and Africa. The two most commonly grown are arabica and robusta. Once ripe,
39+
coffee berries are picked, processed, and dried. Dried coffee seeds (referred to as beans) are roasted to
40+
varying degrees, depending on the desired flavor. Roasted beans are ground and brewed with near-boiling
41+
water to produce coffee as a beverage.
42+
</p>
43+
</div>
44+
</body>
45+
46+
</html>

0 commit comments

Comments
 (0)