23 lines
446 B
HTML
23 lines
446 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>
|
|
<h1>Productos</h1>
|
|
|
|
<div id="productos"></div>
|
|
|
|
<h2>Carrito</h2>
|
|
|
|
<ul id="carrito"></ul>
|
|
|
|
<p id="total">Total: $0</p>
|
|
<script src="ejercicio8.js"></script>
|
|
</body>
|
|
</html>
|