-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtablas.html
More file actions
60 lines (60 loc) · 1011 Bytes
/
tablas.html
File metadata and controls
60 lines (60 loc) · 1011 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tablas</title>
</head>
<body>
<style>
th{
background: #000000;
color: #ffffff;
}
th, td{
border: solid 1px;
}
table{
width: 400px;
text-align: center;
}
</style>
<article>
<table>
<tr>
<th colspan="3">Todos los cursos</th>
</tr>
<tr><!-- Se usa para agregar filas -->
<th>Curso</th> <!-- Se usa para agregr titulos -->
<th>Duracion</th>
<th>Nivel</th>
</tr>
<tr>
<td>Python</td><!-- Se usa para agregr columnas -->
<td>10hrs</td>
<td>Medio</td>
</tr>
<tr>
<td>Python</td>
<td>10hrs</td>
<td>Medio</td>
</tr>
<tr>
<td>Python</td>
<td>10hrs</td>
<td>Medio</td>
</tr>
<tr>
<td>Python</td>
<td>10hrs</td>
<td>Medio</td>
</tr>
<tr>
<td>Python</td>
<td>10hrs</td>
<td>Medio</td>
</tr>
</table>
</article>
</body>
</html>