-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (70 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="app">
<h1>Product Prices Details:</h1>
<table>
<thead>
<tr>
<th>Product Name</th>
<th>Description</th>
<th>Price</th>
<th>Availability</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smartwatch</td>
<td>
Track your fitness goals and stay connected with your phone on
your wrist with this smartwatch.
</td>
<td>$99.99</td>
<td>In Stock</td>
</tr>
<tr>
<td>Wireless Headphone</td>
<td>
Listen to your favorite tunes without the hassle of tangles wires
with these wireless headphone.
</td>
<td>$49.99</td>
<td>In Stock</td>
</tr>
<tr>
<td>Bluetooth Speaker</td>
<td>
Take your music wherever you go with this portable Bluetooth
Speaker.
</td>
<td>$79.99</td>
<td>In Stock</td>
</tr>
<tr>
<td>Laptop Backpack</td>
<td>
Keep your laptop and other essentials organized and protected with
this durable and stylish backpack.
</td>
<td>$29.99</td>
<td>In Stock</td>
</tr>
<tr>
<td>Wireless Mouse</td>
<td>
Experience the freedom of wireless with this ergonomic and
responsive wireless mouse.
</td>
<td>$19.99</td>
<td>Out of Stock</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>