-
Notifications
You must be signed in to change notification settings - Fork 545
/
Copy pathindex.html
86 lines (86 loc) · 3.15 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Placement Exam Solution Code</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<main>
<h1>Clever Cookie Bakery</h1>
<h2>
We have several cookie flavors available. Yum!<br>Tell us what you'd like!
</h2>
<section>
<div class="menu">
<h3>Gingerbread</h3>
<img src="assets/images/gingerbread.png" alt="Gingerbread cookie">
<div class="button-container">
<button id="minus-gb">-</button>
<button id="add-gb">+</button>
</div>
</div>
<div class="menu">
<h3>Chocolate Chip</h3>
<img src="assets/images/choc-chip.png" alt="chocolate chip cookie">
<div class="button-container">
<button id="minus-cc">-</button>
<button id="add-cc">+</button>
</div>
</div>
<div class="menu">
<h3>Sugar Sprinkle</h3>
<img src="assets/images/sugar-cookie.png" alt="Sugar Sprinkle Cookie">
<div class="button-container">
<button id="minus-sugar">-</button>
<button id="add-sugar">+</button>
</div>
</div>
</section>
<hr>
<div class="summary">
<h2>Order Summary</h2>
<table>
<thead>
<tr>
<th>
Cookie Type
</th>
<th>
Quantity
</th>
</tr>
</thead>
<tbody>
<tr>
<td>Gingerbread</td>
<td id="qty-gb">0</td>
</tr>
<tr>
<td>Chocolate Chip</td>
<td id="qty-cc">0</td>
</tr>
<tr>
<td>Sugar Sprinkle</td>
<td id="qty-sugar">0</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Total</th>
<th id="qty-total">0</th>
</tr>
</tfoot>
</table>
</div>
<div>
<h2 id="credit"></h2>
</div>
</main>
<footer>
Image credit: <a href="https://pixabay.com/vectors/anthropomorphic-cookie-decoration-1297309/">gingerbread cookie</a>, <a href="https://pixabay.com/vectors/cookie-chocolate-chips-bakery-154366/">chocolate chip cookie</a>, and <a href="https://pixabay.com/vectors/candy-dessert-cookie-jelly-bean-1348480/">sugar sprinkle cookie</a> are all from PixaBay. <a href="https://unsplash.com/photos/QnNqGoCnBg0">Background bakery image</a> from Unsplash.
</footer>
<script src="assets/script.js"></script>
</body>
</html>