-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLab3.html
More file actions
63 lines (60 loc) · 1.83 KB
/
Copy pathLab3.html
File metadata and controls
63 lines (60 loc) · 1.83 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Toy Information Table</title>
<style>
table {
width: 80%;
border-collapse: collapse;
margin: 20px auto;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 15px;
text-align: center;
}
img {
width: 100px;
height: auto;
}
</style>
</head>
<body>
<h1 style="text-align: center;">Toy Information Table</h1>
<table>
<thead>
<tr>
<th>Image</th>
<th>Cost</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="C:\Users\exam2.RVRjcCSE\Downloads\build.jpeg" alt="Toy 1"></td>
<td>$10.99</td>
<td>A colorful building blocks set for creative play.</td>
</tr>
<tr>
<td><img src="C:\Users\exam2.RVRjcCSE\Downloads\car.jpeg" alt="Toy 2"></td>
<td>$19.99</td>
<td>A remote control car with flashing lights and sounds.</td>
</tr>
<tr>
<td><img src="C:\Users\exam2.RVRjcCSE\Downloads\teddy.jpeg" alt="Toy 3"></td>
<td>$5.49</td>
<td>A soft plush teddy bear, perfect for hugging.</td>
</tr>
<tr>
<td><img src="C:\Users\exam2.RVRjcCSE\Downloads\lap.jpeg" alt="Toy 4"></td>
<td>$25.00</td>
<td>An educational toy laptop with learning games.</td>
</tr>
</tbody>
</table>
</body>
</html>