Simple Landing Page Using Bootstrap 5

Simple Landing Page Using Bootstrap 5
Code Snippet:Simple Bootstrap 5 restaurant landing page
Author:
Published: March 4, 2024
Last Updated: March 4, 2024
Downloads: 596
License: MIT
Edit Code online: View on CodePen
Read More

This code creates a simple landing page using Bootstrap 5. The HTML sections showcase the menu items, booking details, and contact information. The CSS defines the main display properties for the layout. This code helps build a basic webpage for a seafood restaurant using Bootstrap 5.

It’s handy for showcasing menu items, booking details, and contact info in a clean layout. One benefit is its compatibility and easy setup due to Bootstrap 5, making the page look good across different devices.

How to Create a Simple Landing Page Using Bootstrap 5

1. First of all, add the Bootstrap 5 CSS file to your HTML file by including the following link in the <head> section:

 <link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css'>

2. Use the following HTML code to structure your landing page. Customize the restaurant name, logo, menu items, opening hours, location, and contact information in the respective sections.

<section class="bg-primary text-center py-5">
    <img src="https://img.icons8.com/plasticine/100/000000/whole-fish.png"/>
    <h1 class="text-light">Waterfront Seafood</h1>      
  </section>

  <section class="my-3">
    <div class="container">
      <div class="row">
        <div class="col-lg-10 offset-lg-1">
          <div class="alert alert-primary text-center ">
            Open Everyday from 12pm &bull; Bookings Essential &bull; BYO Wine
          </div>
        </div>
      </div>
    </div>
  </section>
  
  <section>
    <div class="container my-3">       
      <div class="row"> 
        <div class="col-lg-6 offset-lg-1">
          <ul class="list-group">
            <li class="list-group-item pt-4">
              <h5>Crispy Fish Burger <span class="badge bg-secondary">New</span></h5>
              <p>Panko crumbed fish fillet, slaw &amp; our famous spicy sauce.<br/><span class="text-secondary">$10</span></p>
            </li>   
            <li class="list-group-item pt-4">
              <h5>Salt &amp; Pepper Calamari</h5>
              <p>Fresh fried calamari, lightly seasoned with salt &amp; pepper.<br/><span class="text-secondary">$12</span></p>
            </li>   
            <li class="list-group-item pt-4">
              <h5>Fish of the Day</h5>
              <p>Grilled fish of the day, garden salad &amp; served with chips.<br/><span class="text-secondary">$17</span></p>
            </li>  
            <li class="list-group-item pt-4">
              <h5>Garlic Prawn Skewer</h5>
              <p>Tiger prawns coated marinated in garlic served on a skewer.<br/><span class="text-secondary">$19</span></p>
            </li> 
            <li class="list-group-item pt-4">
              <h5>Seafood Platter</h5>
              <p>Single serve platter containing fish, prawns, oysters &amp; a glass of wine.<br/><span class="text-secondary">$25</span></p>
            </li>              
          </ul>        
        </div>
        <div class="col-lg-4"> 
          <div class="card mb-5">
            <div class="card-header">
              Book Online
            </div>
            <div class="card-body">
              <h5 class="card-title">Bookings are essential!</h5>
              <p class="card-text">Don't miss out - book online to secure a table today.</p>
              <a href="#" class="btn btn-primary">Check Availability</a>
            </div>
          </div>
          <h6 class="font-weight-bold">Opening Hours</h6>
          <p>Monday – Sunday<br />8am – 4pm</p>          ‍
          <h6 class="font-weight-bold">Location</h6>
          <p>123 Beach Street<br/>Melbourne, Victoria 3000</p>          ‍
          <h6 class="font-weight-bold">Contact</h6>
          <p>T: <a href="#">07 1234 5678</a><br />E: <a href="#">info@waterfrontseafood.com</a></p>
        </div>
      </div>      
    </div>
  </section>

Feel free to enhance the visual appeal by adding your custom CSS. Update the menu items in the list under the “Menu” section. Adjust the dish names, descriptions, and prices accordingly. Modify the details in the last section to match your restaurant’s specifics. Update the opening hours, location, and contact information to keep customers informed.

That’s all! hopefully, you have successfully created a Simple Landing Page Using Bootstrap 5. If you have any questions or suggestions, feel free to comment below.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

About CodeHim

Free Web Design Code & Scripts - CodeHim is one of the BEST developer websites that provide web designers and developers with a simple way to preview and download a variety of free code & scripts. All codes published on CodeHim are open source, distributed under OSD-compliant license which grants all the rights to use, study, change and share the software in modified and unmodified form. Before publishing, we test and review each code snippet to avoid errors, but we cannot warrant the full correctness of all content. All trademarks, trade names, logos, and icons are the property of their respective owners... find out more...

Please Rel0ad/PressF5 this page if you can't click the download/preview link

X