JonathanShitrit / bootstrap-lab

Learn to use the Bootstrap toolkit to build responsive web sites.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bootstrap lab

Project 1: Build a responsive cookie store web page

In this exercise, you have been given an index.html file that already contains our content. What we will do in the next steps is add bootstrap for styling and for a responsive layout.

  1. Link the css/styles.css file in the index.html <head> section.
    • We will use this to add our own custom styles.
  2. Add Bootstrap
  3. Apply the bootstrap grid classes
    • The 4 cookie products should appear side by side in one row on large screens
    • The 4 cookies should appear one per row on medium and smaller screens
    • grid
  4. Apply styling to make the page responsive as follows:
    • On larger screens:
    • larger screens
    • On medium and smaller screens:
    • smaller screens
  5. Using only bootstrap styles, and not moving any html tags, make the cookie products alternate as follows on larger screens:
    • larger screens
    • Hint: You can wrap your existing HTML in extra <div> tags
    • Hint: Look into the reordering classes
    • Clarifications
      • Don't change the order of the 3 main cookie html tags, the <h3>, followed by the <p>, and then the <img> tags. Remember, we want to keep semantic order.
      • You can add <div>'s and bootstrap classes as needed, you can wrap any tags in divs as needed, as long as you don't change the order.
  6. Stretch Add a custom google font to our page:

Project 2: Build a personal (professional) web page for yourself

  • Build a personal (professional) web page. Follow the following criteria
    • Use HTML5, CSS, Bootstrap
    • For the content:
      • Introduce yourself
      • Post projects you have done
      • Education/Professional Experience, Relevant Skills
      • List any technology or blog links you recommend
      • Include at least one image (project related, you, or related picture)
      • Optional: Post a "blog" entry about a technology you have used, or school topic

About

Learn to use the Bootstrap toolkit to build responsive web sites.


Languages

Language:HTML 71.2%Language:CSS 28.8%