-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
63 lines (58 loc) · 1.64 KB
/
index2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<head>
<style>
.pizzaFrame {
float: left;
background-color: lightgrey;
width: 200;
border: 15px solid green;
padding: 20px;
margin: 20px;
text-align: center;
}
.RemoveButton
{
float: right;
}
.pskit
{
float: left;
}
</style>
</head>
<body>
<div class="Menu">
<div class="pizzaFrame">
<img src="images/pizza-4.jpg" width="120px">
<p>Italian Pizza: 155kr</p>
<button type="button" onclick="ItalianPizzaFunc(1)">Add</button>
</div>
<div class="pizzaFrame">
<img src="images/pizza-5.jpg" width="120px">
<p>Greek Pizza: 195kr</p>
<button type="button" onclick="GreekPizzaFunc(1)">Add</button>
</div>
<div class="pizzaFrame">
<img src="images/pizza-7.jpg" width="120px">
<p>Swedisch Pizza: 99kr</p>
<button type="button" onclick="SvenskPizzaPizzaFunc(1)">Add</button>
</div>
</div>
<hr class="line1">
<button type="button" onclick="buy()">Buy</button>
<label id="summa">Summa:</label>
<hr class="line1">
<div style="width: 100%;">
<p id="ItalianPizza" class="pskit">Italian pizza:</p>
<button id="removeItalianPizzaButton"class="RemoveButton" type="button" onclick="ItalianPizzaFunc(-1)">-</button>
</div>
<div style="width: 100%;">
<p id="GreekPizza" class="pskit">Greek pizza: </p>
<button id="removeGreekPizzaButton" class="RemoveButton" type="button" onclick="GreekPizzaFunc(-1)">-</button>
</div>
<div style="width: 100%;">
<p id="SvenskPizza" class="pskit">Swedisch pizza:</p>
<button id="removeSvenskPizzaButton" class="RemoveButton" type="button" onclick="SvenskPizzaPizzaFunc(-1)">-</button>
</div>
<script src="js/createDeleteOrder.js"></script>
</body>
</html>