- HTML
- CSS
- Bootstrap
- JavaScript
- jQuery
- Git
Web application that allows a user to choose one or more individual pizza toppings, a pizza size and view the final price of the pizza.
-
Clone this repository. To clone using HTTPS, click on the green download button above the list of files and click on the clipboard icon to save the repository URL.
-
Open your terminal.
-
Navigate to the directory (such as your Desktop) where you want the cloned directory.
-
Type
git clone
and paste the URL you copied. -
Press Enter.
-
Navigate to the project folder on your computer and open the
index.html
file to view the webpage. -
Alternatively, you can view the live webpage via this GitHub Page.
Describe: Pizza( );
Test: If user doesn't select any topppings and clicks on button
Code: Pizza( );
Expected Output: Your total is $0
Test: If user selects three toppings and clicks on button
Code: Pizza(3);
Expected Output: Your total is $3
Test: If user selects a small pizza with no toppings and clicks on button
Code: Pizza(10);
Expected Output: Your total is $10
Test: If user selects a medium pizza with three toppings and clicks on button
Code: Pizza(18);
Expected Output: Your total is $18
- No known issues.
MIT License
Copyright (c) 2021 Carlos Urquiza
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Feel free to contact me at webquiza@gmail.com with any questions regarding this webpage.