Functions in Python

Functions allow us to write several lines of code, that may need to be called at different times in our code, and to call all of the code, with using just the function name, and some parameters. Sometimes functions are used to make code more readable, calling a function by a logical name, rather than…

Bootstrap 4: Creating a Navigation Bar

Building your navigation is immensely important to any website, whether it is a single page, or a multi-page behemoth. Bootstrap’s navbar is responsive , and supports branding, navigation, search and more. Some basic info from Bootstrap’s site about Navbar, that you might want/need to know. Navbars require a wrapping .navbar with .navbar-expand{-sm|-md|-lg|-xl} for responsive collapsing…

Bootstrap 4: Creating Containers and Columns

Bootstrap works on the idea of containers and columns for it’s basic layout. Containers are the most basic layout element in Bootstrap and are required when using the default grid system. You can nest containers, but most people don’t find this necessary. You can choose from a responsive, fixed-width container where its max-width changes at each breakpoint (the…

Starting with Bootstrap

We’ll be looking at Bootstrap, Version 4 as it is the latest, since it gives us several benefits, including being mobile friendly/responsive right out of the box, and comes with several ready to use components. If you go to GetBootstrap.com you are given a couple of options. First, you can click on the Download button….