Buenas tardes,
Antes de incluir el codigo, decir que ya lo pongo simplemente para que me digais los errores, porque habra miles, ya que me estoy volviendo loco y no me sale por ninguna parte. Ademas creo que algunos conceptos todavia los tengo muy verdes y casi se me esta hasta olvidando el curso de HTML.
<html>
<head>
<meta charset="utf-8">
<title> Ejercicio Colores CU01019D </title>
<link rel="stylesheet" type="text/css" href="EJERCICIO CU01019.CSS">
</head>
<body>
<table border="1px">
<th id>Nombre</th>
<th id>Hexadecimal</th>
<th id>RGB</th>
<tr>
<td>DimGray</td>
<td>1E90FF</td>
<td>178,34,34</td>
</tr>
<tr>
<td>IndianRed</td>
<td>696969</td>
<td>205,92,92</td>
</tr>
<tr>
<td>FireBrick</td>
<td>CD5C5C</td>
<td>30,144,255</td>
</tr>
<td>DodgerBlue</td>
<td>B22222</td>
<td>75,0,130</td>
</tr>
<tr>
<td>Indigo</td>
<td>4B0082</td>
<td>105,105,105</td>
</tr>
</table>
</body>
</html>
/*Ejercicio CU01019D*/
#th{background-color:rgb(105.105.105);}
td:nth-child(1){background-color:rgb(205.92.92);}
td:nth-child(2){background-color:rgb(178.34.34);}
td:nth-child(3){background-color:rgb(30.144.255);}
td:nth-child(4){background-color:rgb(75.0.130);}