Posts

Image
 Blog Post 2 Hello, everyone welcome back to my Blog. Last time I introduced you all to the wonderful world of Bootstrap CSS. This time around we will be expanding on the topic and also mixing in some bootstrap JavaScript in order to do some more advanced things. This is where we will really see some advantages of using Bootstrap. over the course of this blog you will notice that the code used to make things work is much less than what you might do if you were creating all these great components yourself. This is because in order to accomplish these things normally you would need to write all of your own JavaScript and CSS, so instead of writing three hundred lines of code would essentially cut that number down and maybe write about one hundred and fifty. so the first thing we will focus on in this blog post will be the search icon button and its animation. you will notice that the search button is a light blue color and it is outlined as well. This is done by adding the ...

Getting started with Bootstrap.

Image
THINGS YOU SHOULD KNOW What is a framework? A framework is a structure that a programmer can use to build a piece of software on. Be familiar with Java terminology. Java class,  Scanner class, Library What is a responsive website? Responsive web design is  a modern approach  to web development that allows websites and pages display on all screen sizes by automatically adapting to the screen size (ie. desktop,  smartphone,  laptop, and   tablet.) WHAT IS BOOTSTRAP & HOW TO USE IT? Bootstrap is a very useful tool for any web developer. It is a CSS Framework for developing responsive websites. To put it into programmers terms Bootstrap is to CSS what the Scanner class is to your custom Java class. Basically a user would import Bootstrap into their HTML file, using one of two following methods. 1. Download Bootstrap onto your machine and load it into your HTML page like a stylesheet. 2. Go on to the official Bootstrap page in order copy the link provid...