-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsMejorado.html
31 lines (29 loc) · 1 KB
/
jsMejorado.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sal's Pizza</title>
<link id="cssRef" href="css/estilo.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/vistaPedido.js"></script>
<script type="text/javascript" src="js/ajax.js"></script>
<script type="text/javascript" src="js/controladorPedido.js"></script>
</head>
<body>
<div class="container">
<div class="titulo">
<h1>Sal's Pizza - V2</h1>
</div>
<div class="menu">
<table id="tabla">
<tr><th>Comprar</th><th>Pizzas</th><th>Precio</th></tr>
</table>
</div>
<div class="calculo">
<span class="total">
Total: $ <span id="total">0.00</span>
</span>
</div>
</div>
</body>
</html>