DESIGNE OF APP REPORT 3
GroupWork1/css/bookingnow.css
body {background-color: rgb(244, 156, 79); } h1{ color: rgb(66, 131, 237); } p{ color: black; font-size: 20px; font-family: serif; } .a { color: rgb(10, 4, 53); font-size: 20px; font-family: serif; } .column{ float: right; width: 33.33%; padding: 6px; }
GroupWork1/css/style.css
/* CSS styles for the Esplanade Restaurant & Terrace */ body, h1, h2, h3, p, ul { margin: 0; padding: 0; } .hamburger-menu { padding: 0; margin: 0; box-sizing: border-box; } .hamburger { width: 30px; height: 3px; background-color: #000; margin-bottom: 5px; } header { background-color: #eeaa50; } nav ul { list-style-type: none; } nav ul li { display: inline; margin-right: 15px; } nav ul li a { text-decoration: none; color: #040404; padding: 20px; } /* Hero Section */ .hero { padding: 180px 0; background-image: url("../images/home-page.jpg"); background-position: center; background-attachment: fixed; background-repeat: no-repeat; background-size: cover; height: 800px; object-fit: contain; } .hero__container { display: flex; flex-direction: column; justify-content: center; align-items: center; max-width: 1200px; margin: 0 auto; height: 90%; text-align: center; } .hero__head { font-size: 95px; margin-bottom: 22px; color: #f39d34; } .hero__head span { background: #f57927; background: -webkit-linear-gradient(to right, #f18e31, #f09b34); background: linear-gradient(to right, #eb9d28, #eb7536ef); background-size: 100%; -webkit-background-clip: text; -moz-background-clip: text; -webkit-text-fill-color: transparent; -mo-text-fill-color: transparent; } .hero__description { font-size: 45px; background: #ed9a1d; background: #eb8a28; background: -webkit-linear-gradient(to right, #ee750b, #df8b0d, #e68600); background: linear-gradient(to right, #dc620b, #eea528, #f69c00); background-size: 100%; -webkit-background-clip: text; -moz-background-clip: text; -webkit-text-fill-color: transparent; -moz-text-fill-color: transparent; } .highlight { border-bottom: 4px solid rgb(147, 145, 145); transition: 0.3s; } /* Section styles */ section { padding: 50px; text-align: center; } .h { display: grid; } /* Footer styles */ footer { background-color: #333; color: #fff; text-align: center; } body { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, sans-serif; background-position: center; background-repeat: no-repeat; background-size: cover; height: 800px; object-fit: contain; background-color: #f8ae6e; } h1 { text-align: center; padding: 20; } .menu-container { display: flex; flex-direction: column; justify-content: center; align-items: center; margin: 0 auto; height: 90%; text-align: center; background-image: url("../images/menu-page.jpg"); } .menu-item { width: 300px; padding: 20px; margin: 10px; background-color: #eeeeed; box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); } h2 { margin-top: 0; } .contact-container { display: flex; flex-direction: column; justify-content: center; align-items: center; margin: 0 auto; height: 90%; text-align: center; background-image: url("../images/contact-page.jpg"); }
GroupWork1/html/booking.html
[removed]Booking Now
Name:
Emaill:
Address:
Date:
Mobile:
Country:
Terraces :
Gender
Male Female others :
Language
Enlgish other
GroupWork1/html/contact.html
Contact for Booking
Book a Table2023 Esplanade Restaurant & Terrace. All rights reserved.
GroupWork1/html/index.html
Welcome to Esplanade Restaurant & Terrace
Enjoy your time with us
Discover the Tastes of an Award Winning Restaurant2023 Esplanade Restaurant & Terrace. All rights reserved.
GroupWork1/html/menu.html
Menu
Lunch
Special Lunch items everyday
Click to seeDinner
Special Dinner item everyday
Click to seeDrinks
We also serve alcohol
Click to seeBook a Table online
Click here to book2023 Esplanade Restaurant & Terrace. All rights reserved.
GroupWork1/images/contact-page.jpg
GroupWork1/images/home-page.jpg
GroupWork1/images/img-04.jpg
GroupWork1/images/logo.png
GroupWork1/images/menu-list.jpg
GroupWork1/images/menu-page.jpg
GroupWork1/images/other.jpg
GroupWork1/js/main.js
// JavaScript code for the restaurant website // Example function to display a welcome message //function displayWelcomeMessage() { // var welcomeMessage = "Welcome to our restaurant website!"; // alert(welcomeMessage); // } // // Example event listener to trigger the welcome message on button click // var button = document.getElementById("welcomeButton"); // button.addEventListener("click", displayWelcomeMessage); // // menu page //// Example function to handle menu item click //function handleMenuItemClick(event) { // var menuItem = event.currentTarget; // console.log('Clicked on menu item: ' + menuItem.querySelector('h2').textContent); // } // // Add event listeners to menu items // var menuItems = document.querySelectorAll('.menu-item'); // menuItems.forEach(function(item) { // item.addEventListener('click', handleMenuItemClick); // }); function blinker() { if (document.getElementById("blink")) { var d = document.getElementById("blink"); d.style.color = (d.style.color == 'blue' ? 'red' : 'blue'); setTimeout('blinker()', 900); } } document.querySelector('.hamburger-menu').addEventListener('click', function() { document.querySelector('.menu').style.display = 'block'; });