FCC Documentation


Chapter 1: Build a Tribute Page

  • Enter Billy Graham
  • The HTML
  • Bootstrap
  • Result

Chapter 2: Survey Form

  • Responsive Attack
  • JavaScript Validation
  • Result

Chapter 3: Landing Page

  • Israel Travel Agency
  • Scrolling Nav
  • Responsive Vimeo
  • Result

Scrolling Nav

nav

Scrolling Nav is a basic Bootstrap framework for creating smooth scrolling, one page websites.

Check out some of the code below:

function success() { var html = document.documentElement; var body = document.body; html.classList.add('sr'); if (body) { body.style.height = '100%'; } else { document.addEventListener('DOMContentLoaded', function () { body.style.height = '100%'; }); } }