Create a Homepage for Restaurant using HTML , CSS and Bootstrap
Prerequisites: HTML 5, CSS and Bootstrap
HTML: HTML stands for Hyper Text Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between the web pages. A markup language is used to define the text document within tag which defines the structure of web pages.
CSS: Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page.
BOOTSTRAP : Bootstrap is a free and open-source tool collection for creating responsive websites and web applications. It is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites. Nowadays, the websites are perfect for all the browsers (IE, Firefox and Chrome) and for all sizes of screens (Desktop, Tablets, and Phones). All thanks to Bootstrap developers – Mark Otto and Jacob Thornton of Twitter, though it was later declared to be an open-source project.
Below is the source code for construction of Restaurant Homepage:
HTML section: File name is index.html
HTML
<!DOCTYPE html> < html lang = "en" > < head > <!-- Required meta tags --> < meta charset = "utf-8" > < meta name = "viewport" content=" width = device -width, initial-scale = 1 , shrink-to-fit = no "> < link rel = "stylesheet" href = "index.css" > <!-- Bootstrap CSS --> < link rel = "stylesheet" href = integrity = "sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin = "anonymous" > < title >Restaurant Website</ title > </ head > < body > <!-- navbar --> < nav > < ul class = "nav-flex-row" > < li class = "nav-item" > < a href = "#about" >About</ a > </ li > < li class = "nav-item" > < a href = "#reservation" >Reservation</ a > </ li > < li class = "nav-item" > < a href = "#menu" >Menu</ a > </ li > < li class = "nav-item" > < a href = "#shop" >Shop</ a > </ li > </ ul > </ nav > < section class = "section-intro" > < header > < h1 > Welcome To Fooddddie's Kitchen</ h1 > </ header > < div class = "link-to-book-wrapper" > < a class = "link-to-book" href = "#reservations" >Book a table</ a > </ div > </ section > < section class = "about-section" > < article > < h3 > Section for the text why your restaurant is the best. </ h3 > < p > Lorem ipsum dolor sit, amet consectetur adipisicing elit. A quos, voluptatum illum mollitia dolores libero placeat nesciunt quasi adipisci impedit!Lorem ipsum dolor sit, amet consectetur adipisicing elit. A quos, voluptatum illum mollitia dolores libero placeat nesciunt quasi adipisci impedit! Lorem ipsum dolor sit, amet consectetur adipisicing elit. A quos, voluptatum illum mollitia dolores libero placeat nesciunt quasi adipisci impedit!Lorem ipsum dolor sit. </ p > </ article > </ section > <!-- carousel section --> < div id = "carouselExampleControls" class = "carousel slide" data-ride = "carousel" > < div class = "carousel-inner" > < div class = "carousel-item active" > < img src = "img/food1.png" class = "d-block w-100" alt = "food" > </ div > < div class = "carousel-item" > < img src = "img/food2.png" class = "d-block w-100" alt = "food" > </ div > < div class = "carousel-item" > < img src = "img/food3.png" class = "d-block w-100" alt = "food" > </ div > </ div > < a class = "carousel-control-prev" href = "#carouselExampleControls" role = "button" data-slide = "prev" > < span class = "carousel-control-prev-icon" aria-hidden = "true" > </ span > < span class = "sr-only" >Previous</ span > </ a > < a class = "carousel-control-next" href = "#carouselExampleControls" role = "button" data-slide = "next" > < span class = "carousel-control-next-icon" aria-hidden = "true" > </ span > < span class = "sr-only" >Next</ span > </ a > </ div > < div class = "container" > < div class = "row-flex" > < div class = "flex-column-form" > < h3 > Make a booking </ h3 > < form class = "media-centered" > < div class = "form-group" > < p > Please leave your number we will call to make a reservation </ p > < input type = "name" class = "form-control" id = "exampleInputName1" aria-describedby = "nameHelp" placeholder = "Enter your name" > </ div > < div class = "form-group" > < input type = "number" class = "form-control" id = "exampleInputphoneNumber1" placeholder = "Enter your phone number" > </ div > < button type = "submit" class = "btn btn-primary" > Submit </ button > </ form > </ div > < div class = "opening-time" > < h3 > Opening times </ h3 > < p > < span >Monday—Thursday: 08:00 — 22:00</ span > < span >Friday—Saturday: 09:00 — 23:00 </ span > < span >Sunday: 10:00 — 17:00</ span > </ p > </ div > < div class = "contact-address" > < h3 > Contact </ h3 > < p > < span >410-602-8008</ span > < span >15 Florida Ave</ span > < span >Palo-Alto, 1111 CA</ span > </ p > </ div > </ div > </ div > <!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> integrity = "sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin = "anonymous" > </ script > < script src = integrity = "sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin = "anonymous" > </ script > < script src = integrity = "sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin = "anonymous" > </ script > </ body > </ html > |
CSS section: File name is index.css
CSS
@import url ( 'https://fonts.googleapis.com/css?family=Big+Shoulders+Text:100, 300, 400, 500, 600, 700, 800, 900&display=swap' ); /* font-family: 'Big Shoulders Text', cursive; */ .nav-flex-row { display : flex; flex- direction : row; justify- content : center ; position : absolute ; z-index : 100 ; left : 0 ; width : 100% ; padding : 0 ; } .nav-flex-row li { text-decoration : none ; list-style-type : none ; padding : 20px 15px ; } .nav-flex-row li a { font-family : 'Big Shoulders Text' , cursive ; color : #000 ; font-size : 1.5em ; text-transform : uppercase ; font-weight : 300 ; } .nav-flex-row li a:hover{ background : #E7E7E7 ; } .section-intro { height : 820px ; background-image : url (img/foddiee.png); background- size : cover; display : flex; flex- direction : column; justify- content : center ; align-items: center ; } .section-intro h 1 { text-align : center ; color : #000 ; font-size : 4em ; font-weight : 700 ; } .section-intro header { display : flex; flex: 4 ; flex- direction : row; justify- content : center ; align-items: center ; } .link-to-book-wrapper { flex: 1 ; } .about-section { display : flex; align-items: center ; background-color : #f3f3f3 c 0 ; padding : 50px 30px ; } .link-to-book { color : #ffffff ; display : block ; border : 2px solid #ffffff ; padding : 5px 10px ; } a.link-to-book:hover { background-color : #ffffff ; color : #95999e ; text-decoration : none ; } .about-section p, .about-section h 3 { text-align : center ; width : 60% ; margin : auto ; font-family : 'Big Shoulders Text' , cursive ; font-size : 1.8em ; text-transform : uppercase ; } .carousel-inner { height : 700px ; } .row-flex { display : flex; flex- direction : row; } .flex-column-form { display : flex; flex- direction : column; flex: 1 ; margin : 30px 20px ; } .btn.btn-primary { font-family : 'Big Shoulders Text' , cursive ; color : #ffffff ; background-color : #95999e ; text-transform : uppercase ; font-size : 16px ; padding : 5px 10px ; letter-spacing : 2px ; border : 0 ; } .btn.btn-primary:hover { background-color : #747474 ; } .opening-time, .contact-address { flex: 1 ; margin : 30px 20px ; font-size : 1.2em ; } .form-group p { font-size : 1.2em ; } .opening-time p span, .contact-address p span { display : block ; } @media ( min-width : 577px ) and ( max-width : 800px ) { .section-intro { height : 500px ; } .about-section p, .about-section h 3 { font-size : 20px ; } .carousel-inner { height : auto ; } .row-flex { display : flex; flex- direction : column; } } @media screen and ( max-width : 576px ) { .section-intro { height : 300px ; } .about-section { padding : 30px ; } .section-intro h 1 { font-size : 2em ; } .about-section p, .about-section h 3 { font-size : 15px ; } .carousel-inner { height : auto ; } .row-flex { display : flex; flex- direction : column; } .row-flex h 3 { font-size : 25px ; text-align : center ; } .form-group p { font-size : 15px ; } .opening-time p span, .contact-address p span { font-size : 15px ; text-align : center ; } } |
Output:
Please Login to comment...