<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
Exercice 9; HTML 3
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
I don’t know how put “Monstres célèbres par année de naissance” in red color ( with already “colspan=2” ) I know that is " style=“color:red” but where place that ?
Thank you for your help and sorry for my english
<html>
<head>
<title>Les tableaux</title>
</head>
<body>
<table style="border-collapse:collapse;">
<thead>
<tr>
<th colspan="2">Les monstres célèbres par année de naissance</th>
</tr>
<tr style="border-bottom:1px solid black;">
<th style="padding:5px;"><em>Les monstres célèbres</em></th>
<th style="padding:5px;border-left:1px solid black;"><em>Année de naissance</em></th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding:5px;">King Kong</td>
<td style="padding:5px;border-left:1px solid black;">1933</td>
</tr>
<tr>
<td style="padding:5px;">Dracula</td>
<td style="padding:5px;border-left:1px solid black;">1897</td>
</tr>
<tr>
<td style="padding:5px;">Frankenstein</td>
<td style="padding:5px;border-left:1px solid black;">1944</td>
</tr>
</tbody>
</table>
</body>
</html>