Many new features have been added in the bootstrap 5 to implement a template with a more attractive look without less use of JQuery. The way to design a very simple HTML template using bootstrap 5 has shown in this tutorial by adding multiple parts of the template step by step. Before starting this tutorial, […]
Read MoreCodeIgniter is a popular PHP framework for web development task. Bootstrap is not included in CodeIgniter by default like other framework. This tutorial will help the reader to know the way to use bootstrap with codeigniter 3, basic routing process and implement authentication system using CodeIgniter and MySQL. Follow the steps properly to understand the […]
Read MoreBootstrap is a popular framework now for designing responsive website. How you can design a very simple webpage using bootstrap as a beginner is shown in this tutorial. Steps: 1. Create a folder named “bootstrap project” and keep the following files in the folder. Jquery.js bootstrap.min.css bootstrap.min.js 2. Create a html file add the link […]
Read MoreSteps: Create Link for all necessary css and js files. <link href=”bootstrap.min.css” rel=”stylesheet”> <link href=”fonts.css” rel=”stylesheet”> <link href=”style.css” rel=”stylesheet”> <script src=”jquery.js”></script> <script src=”bootstrap.min.js”></script> You can get the script for fonts.css and style.css files from the following link. Fonts.css Style.css 2. Create the top menu <div class=”navbar navbar-fixed-top” role=”navigation” style=”background-color:white”> <div class=”container”> <div class=”navbar-header”> <button type=”button” […]
Read More