tads4-express/views/produtos/visualizar.ejs

14 lines
367 B
Plaintext
Raw Normal View History

2024-10-25 01:23:09 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/stylesheets/style.css">
<title>Produtos</title>
</head>
<body>
2024-11-28 18:59:42 +00:00
<h1><%= produto.nome %></h1>
<img src="<%= produto.imagem %>" alt="" srcset="">
<p>R$ <%= produto.preco %></p>
2024-10-25 01:23:09 +00:00
</body>
</html>