Estou tendo problemas com meu index.html. Assim que defino Index aparece uma mensagem esta mensagem de erro para mim: 'charset' meta element should be specified in the ' head ' not ' body '
{{define "Index"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1></h1>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Descrição</th>
<th>Preço</th>
<th>Quantidade</th>
</tr>
</thead>
<tbody>
<tr>
<td>iPhone 13</td>
<td>128 GB</td>
<td>1900</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>
{{end}}