You are on page 1of 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Milk Tea Store</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #f9f9f9;
padding: 20px;
text-align: center;
}
h1 {
color: #333;
margin: 0;
}
main {
padding: 20px;
}
h2 {
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Milk Tea Store</h1>
</header>
<main>
<h2>Menu and Pricing</h2>
<table>
<tr>
<th>Item</th>
<th>Description</th>
<th>Price</th>
</tr>
<tr>
<td>Classic Milk Tea</td>
<td>A traditional blend of black tea and milk</td>
<td>$3.99</td>
</tr>
<tr>
<td>Taro Milk Tea</td>
<td>Milk tea infused with taro flavor</td>
<td>$4.49</td>
</tr>
<tr>
<td>Thai Milk Tea</td>
<td>Authentic Thai milk tea with a hint of spices</td>
<td>$4.99</td>
</tr>
<tr>
<td>Matcha Green Tea</td>
<td>Japanese green tea powder mixed with milk</td>
<td>$4.99</td>
</tr>
<tr>
<td>Brown Sugar Boba</td>
<td>Milk tea with chewy tapioca pearls</td>
<td>$4.49</td>
</tr>
<tr>
<td>Fruit Tea</td>
<td>Refreshing blend of fruit flavors and tea</td>
<td>$3.99</td>
</tr>
</table>
</main>
</body>
</html>

You might also like