-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathejercicio1.html
More file actions
37 lines (36 loc) · 871 Bytes
/
ejercicio1.html
File metadata and controls
37 lines (36 loc) · 871 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="ejercicio1.css" />
<title>Un titulo cualquiera</title>
</head>
<body>
<h1>CSS border-radius</h1>
<table>
<!-- Haz que haya dos columnas osea un 2x6 -->
<tr>
<td><div></div></td>
<td><div id="dos"></div></td>
</tr>
<tr>
<td><div id="tres"></div></td>
<td><div id="cuatro"></div></td>
</tr>
<tr>
<td><div id="cinco"></div></td>
<td><div id="seis"></div></td>
</tr>
<tr>
<td><div id="siete"></div></td>
<td><div id="ocho"></div></td>
</tr>
<tr>
<td><div id="nueve"></div></td>
<td><div id="diez"></div></td>
</tr>
<tr>
<td><div id="once"></div></td>
<td><div id="doce"></div></td>
</tr>
</table>
</body>
</html>