• Call Us: +92-333-7276335
  • - Mail Us: info@shekztech.com

Plot 1177, Sector 31B - Crossing, Karachi, Sindh

Adding Bootstrap 4 in Codeigniter 4 in the Crud Application

Please Login and enroll in this course to view the lesson.

Its time to add the words powerful front-end framework bootstrap;  I am talking bootstrap 4; adding bootstrap 4 in Codeigniter 4 is not a difficult task you need to add the CDN OR download the bootstrap files and add them to our project; it's simple.

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport"
      content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <link rel="stylesheet" href="<?php echo base_url('bootstrap/css/bootstrap.css')?>" type="text/css">
  <title>Add Bootstrap 4 in codeigniter 4</title>
</head>