30 lines
654 B
HTML
30 lines
654 B
HTML
<!DOCTYPE html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Produtos</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Lista de produtos</h1>
|
|
<main>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Nome</th>
|
|
<th>Preço</th>
|
|
<th>Estoque</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="conteudo_tabela">
|
|
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |