progredes20261/apirest/frontend/index.html

29 lines
638 B
HTML
Raw Permalink Normal View History

2026-06-01 21:42:25 +00:00
<!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>
2026-06-01 22:28:19 +00:00
<h1> Lista de produtos</h1>
2026-06-01 21:42:25 +00:00
<main>
2026-06-01 22:28:19 +00:00
2026-06-01 21:42:25 +00:00
<table>
2026-06-01 22:28:19 +00:00
<thead>
<tr>
<th>Nome</th>
<th>Preço</th>
<th>Estoque</th>
</tr>
</thead>
<tbody id="conteudo_tabela">
</tbody>
2026-06-01 21:42:25 +00:00
</table>
</main>
2026-06-01 22:28:19 +00:00
<script src=""script.js"></script>
2026-06-01 21:42:25 +00:00
</body>
</html>