-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarea15.html
73 lines (69 loc) · 1.84 KB
/
tarea15.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
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Su Pedido</title>
<style>
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid black;
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
.total {
font-weight: bold;
}
.right {
text-align: right;
}
</style>
</head>
<body>
<h1>Su pedido</h1>
<table>
<thead>
<tr>
<th>Nombre producto</th>
<th>Precio unitario</th>
<th>Unidades</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<tr>
<td>Reproductor MP3 (80 GB)</td>
<td class="right">192.02</td>
<td class="right">1</td>
<td class="right">192.02</td>
</tr>
<tr>
<td>Fundas de colores</td>
<td class="right">2.50</td>
<td class="right">5</td>
<td class="right">12.50</td>
</tr>
<tr>
<td>Reproductor de radio & control remoto</td>
<td class="right">12.99</td>
<td class="right">1</td>
<td class="right">12.99</td>
</tr>
</tbody>
<tfoot>
<tr class="total">
<td>TOTAL</td>
<td>-</td>
<td class="right">7</td>
<td class="right">207.51</td>
</tr>
</tfoot>
</table>
</body>
</html>