Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions starter-code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ <h1>Pizza Builder</h1>
<div class="panel controls">
<ul>
<li>
<button class="btn btn-pepperonni active">Pepperonni</button>
<button id="peppBtn" class="btn btn-pepperonni active">Pepperonni</button>
</li>
<li>
<button class="btn btn-mushrooms active">Mushrooms</button>
<button id="mushBtn" class="btn btn-mushrooms active">Mushrooms</button>
</li>
<li>
<button class="btn btn-green-peppers active">Green peppers</button>
<button id="greenBtn" class="btn btn-green-peppers active">Green peppers</button>
</li>
<li>
<button class="btn btn-sauce active">White sauce</button>
<button id="sauceBtn" class="btn btn-sauce active">White sauce</button>
</li>
<li>
<button class="btn btn-crust active">Gluten-free crust</button>
<button id="gltnBtn" class="btn btn-crust active">Gluten-free crust</button>
</li>
</ul>
</div>
Expand All @@ -41,13 +41,13 @@ <h2>Your pizza's price</h2>

<b>$10 cheese pizza</b>
<ul>
<li>$1 pepperonni</li>
<li>$1 mushrooms</li>
<li>$1 green peppers</li>
<li>$3 white sauce</li>
<li>$5 gluten-free crust</li>
<li class="ingred pep-price">$1 pepperonni</li>
<li class="ingred mush-price">$1 mushrooms</li>
<li class="ingred green-price">$1 green peppers</li>
<li class="ingred ws-price">$3 white sauce</li>
<li class="ingred gf-price">$5 gluten-free crust</li>
</ul>
<strong>$21</strong>
<strong>$<span id="pizza-total">21</span></strong>
</aside>
<!-- End Price -->

Expand Down Expand Up @@ -235,6 +235,7 @@ <h2>Your pizza's price</h2>
<div class="stem"></div>
</section>


<section class="pep one">1</section>
<section class="pep two">2</section>
<section class="pep three">3</section>
Expand Down Expand Up @@ -267,6 +268,7 @@ <h2>Your pizza's price</h2>
<section class="pep thirty">30</section>
<section class="pep thirty-one">31</section>
<section class="pep thirty-three">33</section>


<section class="crust crust-gluten-free">
<section class="cheese"></section>
Expand All @@ -289,7 +291,7 @@ <h2>Your pizza's price</h2>
</footer>
<!-- Footer -->

<script src="jquery-2.1.4.js"></script>
<script src="jquery-3.4.0.min.js"></script>
<script src="pizza.js"></script>
</body>
</html>
Loading