87 lines
3.0 KiB
HTML
87 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Product Recommendations</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
width: 80%;
|
|
margin: 20px auto;
|
|
background: #fff;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
}
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Answer In Natural Language</h1>
|
|
<p>Experience exceptional sound with our High-Quality Headphones, featuring advanced noise cancellation and a comfortable over-ear design, perfect for any audio enthusiast. Streamline your workspace with our Ergonomic Wireless Mouse, designed to reduce wrist strain and improve precision without the clutter of wires. Enjoy barista-level espresso at home with our Compact Espresso Machine, which combines sleek design with quick and easy operation. Stay healthy and connected with our Smart Fitness Tracker, ideal for monitoring activity levels and health metrics efficiently. Illuminate any setting with our Ultra-Bright LED Torch, providing powerful lighting solutions for outdoor enthusiasts and emergency preparedness alike</p>
|
|
|
|
<h1>Selected Products</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Stock Code</th>
|
|
<th>Description</th>
|
|
<th>Unit Price</th>
|
|
<th>Country</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>001</td>
|
|
<td>High-Quality Headphones</td>
|
|
<td>$50.00</td>
|
|
<td>USA</td>
|
|
</tr>
|
|
<tr>
|
|
<td>002</td>
|
|
<td>Ergonomic Wireless Mouse</td>
|
|
<td>$20.00</td>
|
|
<td>Canada</td>
|
|
</tr>
|
|
<tr>
|
|
<td>003</td>
|
|
<td>Compact Espresso Machine</td>
|
|
<td>$100.00</td>
|
|
<td>United Kingdom</td>
|
|
</tr>
|
|
<tr>
|
|
<td>004</td>
|
|
<td>Smart Fitness Tracker</td>
|
|
<td>$30.00</td>
|
|
<td>Australia</td>
|
|
</tr>
|
|
<tr>
|
|
<td>005</td>
|
|
<td>Ultra-Bright LED Torch</td>
|
|
<td>$25.00</td>
|
|
<td>New Zealand</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|