-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos.html
46 lines (44 loc) · 1.01 KB
/
productos.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
<html>
<head>
<title>Productos</title>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<th>Nombre</th>
<th>Cantidad</th>
<th>Precio</th>
</tr>
<tr>
<td>Tablet</td>
<td>20</td>
<td>S/. 500</td>
</tr>
<tr>
<td>Mouse</td>
<td>50</td>
<td>S/. 600</td>
</tr>
<tr>
<td>Laptop</td>
<td>30</td>
<td>S/. 3000</td>
</tr>
</table>
</body>
</html>