All Projects → planetoftheweb → Bootstrap4layouts

planetoftheweb / Bootstrap4layouts

Licence: bsd-2-clause
A Template for Bootstrap 4 based on my Bootstrap 4 Layouts course on LinkedIn Learning

Projects that are alternatives of or similar to Bootstrap4layouts

Startbootstrap Simple Sidebar
Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
Stars: ✭ 1,833 (+4065.91%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template, themes
Staradmin Free Bootstrap Admin Template
A Free Responsive Admin Dashboard Template Built With Bootstrap 4. Elegant UI Theme for Your Web App!
Stars: ✭ 1,191 (+2606.82%)
Mutual labels:  bootstrap, template, bootstrap4, bootstrap-template
Vue Bootstrap With Material Design
Vue Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 803 (+1725%)
Mutual labels:  design, bootstrap, bootstrap4
Startbootstrap Shop Homepage
A shop homepage Bootstrap HTML template created by Start Bootstrap
Stars: ✭ 261 (+493.18%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Modular Admin Html
ModularAdmin - Free Dashboard Theme Built On Bootstrap 4 | HTML Version
Stars: ✭ 2,875 (+6434.09%)
Mutual labels:  themes, bootstrap, bootstrap4
Startbootstrap Modern Business
A multipurpose Bootstrap full website template created by Start Bootstrap
Stars: ✭ 753 (+1611.36%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
template-mundana-bootstrap-html
Free blogging template by Sal (@wowthemesnet). Beautifully crafted with the latest technologies, SASS & Bootstrap 4.1.3, Mundana is the perfect design for your professional blog.
Stars: ✭ 39 (-11.36%)
Mutual labels:  bootstrap4, themes, bootstrap-template
Startbootstrap 2 Col Portfolio
A two column Bootstrap HTML portfolio template - created by Start Bootstrap
Stars: ✭ 40 (-9.09%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
React Bootstrap With Material Design
React Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 1,119 (+2443.18%)
Mutual labels:  design, bootstrap, bootstrap4
Startbootstrap Round About
A Bootstrap HTML template for creating about pages - created by Start Bootstrap
Stars: ✭ 35 (-20.45%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Uix Kit
A free UI toolkit based on some common libraries for building beautiful responsive website, compatible with Bootstrap v4.
Stars: ✭ 318 (+622.73%)
Mutual labels:  design, bootstrap, bootstrap4
Purpleadmin Free Admin Template
Purple Admin is one of the most stylish Bootstrap admin dashboard you can get hands on. With its beautifully crafted captivating design and well-structured code.
Stars: ✭ 473 (+975%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Startbootstrap Stylish Portfolio
A stylish, one page, Bootstrap portfolio theme created by Start Bootstrap
Stars: ✭ 748 (+1600%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Material Design For Bootstrap
Important! A new UI Kit version for Bootstrap 5 is available. Access the latest free version via the link below.
Stars: ✭ 9,463 (+21406.82%)
Mutual labels:  design, bootstrap, bootstrap4
Startbootstrap New Age
A web app landing page theme created by Start Bootstrap
Stars: ✭ 855 (+1843.18%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Bootstrap Xd
Bootstrap Design Template — Assets Library — for Adobe XD
Stars: ✭ 74 (+68.18%)
Mutual labels:  design, template, bootstrap4
Startbootstrap Business Casual
A Bootstrap HTML theme for business websites - created by Start Bootstrap
Stars: ✭ 266 (+504.55%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Startbootstrap Scrolling Nav
An unstyled Bootstrap HTML template for creating smooth scrolling, one page websites - created by Start Bootstrap
Stars: ✭ 625 (+1320.45%)
Mutual labels:  bootstrap, bootstrap4, bootstrap-template
Bootstrap4 Cheatsheet
Bootstrap 4 Cheat Sheet
Stars: ✭ 254 (+477.27%)
Mutual labels:  themes, bootstrap, bootstrap4
Angular Bootstrap With Material Design
Angular Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 1,031 (+2243.18%)
Mutual labels:  design, bootstrap, bootstrap4

Bootstrap 4 Layouts

Bootstrap 4 layouts

This repository is a template for building responsive websites for Bootstrap 4. It provides a quick template for getting started with different layouts. It's based on a course I built for LinkedIn learning called Bootstrap 4 Layouts: Responsive Single-Page Design. If you want to see a demo of the layouts, check out: raybo.org/bootstrap4layouts/

There are several different layouts available:

  • Column Based
  • Media
  • Grid
  • Carousel
  • Nested
  • Icons
  • Floater
  • Cards

Structure of Layouts

Each is designed to showcase a different aspect of how Bootstrap Layouts work. Here's a code sample from the Floater Layout:

  <article id="page-floater" class="page-section vertical-padding">

    <section class="layout-floater container text-reverse">
      <div class="row align-items-center justify-content-center">

        <div class="col-8 col-md-4 img-container">
          <img class="layout-image img-fluid" src="http://planetoftheweb.com/i/phone.svg" alt="Photo Sample">
        </div>

        <div class="col-10 col-md-6 align-self-center">
          <div class="my-5 text-center text-md-left pl-md-5">
            <h2 class="layout-title">Floater Title</h2>
            <p class="layout-text ">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officiis fuga ex delectus sunt natus doloremque praesentium
              aspernatur, totam tempora officia, sed fugit? Libero voluptatem nulla mollitia, amet dolor iste magni.</p>
          </div>
        </div>

      </div>
    </section>

  </article>

Each layout is in it's own <article> tag, which begins a layout and has an id with the page- prefix. Most layouts (not the floater layout) also have an optional <header>. They sholuld be self explanatory.

I'd love to see some Pull Requests with additional layouts.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].