-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpumpkinspice.html
95 lines (85 loc) · 2.87 KB
/
pumpkinspice.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
87
88
89
90
91
92
93
94
95
<html>
<head>
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" tyle="text/css" href="css/product-detail.css">
<!-- Scripts -->
<script src="js/product-detail.js"></script>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap" rel="stylesheet">
<!-- Tab info -->
<title>Pumpkin Spice | Bun Bun Bake Shop</title>
</head>
<body>
<!-- Top Navigation -->
<nav>
<div class="logo"><a href="index.html">Bun Bun Bake Shop</a></div>
<div class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="shop.html">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cart.html"><img src="assets/sprites/cart.png" height="27px"></a></li>
</ul>
</div>
</nav>
<div id="container">
<div class="product-image">
<img src="assets/bun-buns/pumpkinspice.jpg">
</div>
<div class="txt">
<h1>Pumpkin Spice Bun Bun</h1>
<p>Price per bun: <span style="font-weight:500;">$3.00</span></p>
<p class="desc">
Spooky Season is coming and you know what that means: pumpkin-flavored everything.
</p>
<p class="desc">
As October nears, we introduce you to this winter’s featured flavor: pumpkin spice! Our pumpkin spice bun bun is made with love and, of course, everything nice.
</p>
<p>
<span style="font-weight:600;">Pairs well with:</span> Sugar-milk glaze<br>
<span style="font-weight:600;">Contains:</span> nuts, milk, egg, wheat
</p>
<!-- Glazing -->
<h3>Glaze (select one)</h3>
<div class="options">
<div class="glaze-option" onclick="selectGlaze(this)">
Vanilla-Milk
</div>
<div class="glaze-option" onclick="selectGlaze(this)">
Sugar-Milk
</div>
<div class="glaze-option" onclick="selectGlaze(this)">
Double-Chocolate
</div>
<div class="glaze-option" onclick="selectGlaze(this)">
None
</div>
</div>
<!-- Quantity -->
<h3>Quantity</h3>
<div class="options">
<div class="quantity" onclick="selectQuantity(this)">
1
</div>
<div class="quantity" onclick="selectQuantity(this)">
3
</div>
<div class="quantity" onclick="selectQuantity(this)">
6
</div>
<div class="quantity" onclick="selectQuantity(this)">
12
</div>
</div>
<!-- Add to Cart Button -->
<button id="addToCart" type="button">Add to Cart</button>
</div>
</div>
<!-- Footer -->
<footer>
<span style="padding-right: 15px">© 2020 Bun Bun Bake Shop</span>
</footer>
</body>
</html>