0
I am learning web development and when trying to do a simple test I could not change font size, background color and other properties. I don’t understand where I’m going wrong.
#tabela{
font-size: 64px;
background-color: red;
padding: 20px;
}
<!DOCTYPE html>
<html>
<head>
<title>Campanhas publicitárias</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<div>
<img src="imagens/capa.png">
</div>
<div>
<tr id="tabela">
<td>item1</td>
<td>item2</td>
<td>item4</td>
<td>item5</td>
</tr>
</div>
</body>
</html>
Could someone help me understand what I’m doing wrong ?