Bootstrap 4
Bootstrap provides CSS classes to style your webpages on the go. This saves a lot of time building web page. Before start we need to either download the bootstrap and include them in project or refer to bootstrap CDN. Copy and paste following, that links to bootstrap.min.css beta version 4.2 (latest version as of 5 Jan 2019) <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"> Also copy and paste following javaScript <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" ></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script> Template The template showing where to place the link to bootstrap CSS and javascripts. <!doctype html> <html lang="en"...