forked from marquez.juan/clase-10-ejercicios-de-repaso
20 lines
526 B
HTML
20 lines
526 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Ejercicio 8</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 8</h1>
|
|
<div id="productList">
|
|
<!-- Acá se mostrarán los productos -->
|
|
</div>
|
|
<div id="checkout">
|
|
<!-- Acá se mostrará el precio total -->
|
|
</div>
|
|
<script src="ejercicio8.js"></script>
|
|
</body>
|
|
</html>
|