diff --git a/README.md b/README.md index 33c7e601..342df317 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Project Name -Replace this readme with your own information about your project. Start by briefly describing the assignment in a sentence or two. Keep it short and to the point. +This project is a small introduction to a JavaScript language. This Pizzeria Ordering System is an interactive web-based application that guides "clients" through customising their food order. It prompts users to input their name, choose between pizza, pasta, or salad, and select specific dish types like Margherita or Caesar Salad. The system also requests the user's age to determine whether to prepare a child-sized or adult-sized portion, then asks for final order confirmation using "Yes" or "No." The project demonstrates basic JavaScript functions, input handling, and conditional logic. ## The problem - -Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next? +To implement the system, I used vanilla JavaScript, focusing on the use of prompt() and alert() for user interaction. The logic was built using functions and conditional statements (such as if/else) to control the flow based on user inputs. I structured the project around functions to modularise different tasks like selecting food type and confirming the order, ensuring the program remained organised and easy to follow (which was A struggle). +If I had more time, I would enhance the project by adding error handling for invalid inputs, refining the UI to replace the basic prompt() and alert() boxes with more visually appealing forms, and perhaps implementing a responsive design using HTML and CSS. ## View it live -Have you deployed your project somewhere? Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about +https://pizzzabot.netlify.app diff --git a/code/Screenshot 2024-09-03 at 11.17.59.png b/code/Screenshot 2024-09-03 at 11.17.59.png new file mode 100644 index 00000000..4d139ed8 Binary files /dev/null and b/code/Screenshot 2024-09-03 at 11.17.59.png differ diff --git a/code/index.html b/code/index.html index f7844d6b..ba8779a8 100644 --- a/code/index.html +++ b/code/index.html @@ -11,8 +11,11 @@ />
-Logic is executed automatically
- +Logic is executed automatically
+