mirror of
https://github.com/CristianCruz0309/proyectos-curso-javascript.git
synced 2026-08-15 02:50:10 +00:00
24 lines
560 B
HTML
24 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Venta de Donuts</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body onload="crearTiendas('itemsTienda', 0, 6)">
|
|
<p>🍩 Venta de MaDona 🍩</p>
|
|
|
|
<div id="itemsTienda">
|
|
</div>
|
|
|
|
<p id="parrafoSalida">
|
|
|
|
</p>
|
|
|
|
<p>
|
|
<button onclick="calcular()">Calcular</button>
|
|
</p>
|
|
</body>
|
|
</html> |