From 472d36b44fabf0657cee8f5702caf276b816fc79 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 14 Jun 2024 07:03:04 +0200 Subject: [PATCH] feat: introduce landing page for Promise Restaurant Added a new index.html file that sets up a basic landing page for Promise Restaurant. It includes a heading, "Place Order" button, and a message div. The "Place Order" button simulates food ordering using JavaScript Promises, displaying success or failure messages based on operation outcomes. Ensures responsiveness and user interaction cues for better UX. Contains basic styles for an aesthetically pleasing UI. --- index.html | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..9926ec6 --- /dev/null +++ b/index.html @@ -0,0 +1,115 @@ + + + + + + Promise Restaurant + + + +

Promise Restaurant

+ +
Please place your order!
+ + + + \ No newline at end of file