How to use bootstrap thumbnail in Codeigniter
How to use bootstrap stylish images or thumbnail in Codeigniter
Hello to all...
today I saw you how to use bootstrap stylish images in CodeIgniter.
Okay, let's start.
here total 3 type of stylish.
- circle
- rounded
- thumbnail
Let start.. practical
Above images are about thumbnail circle rounded images style.
above Image code like this in CodeIgniter
Code of bootstrap thumbnail
<img src="<?php echo base_url('assets/img/angry.png');?>" width="200" height="200">
<img class=" img-thumbnail"src="<?php echo base_url('assets/img/angry-1.png');?>" width="200" height="200">
<img class=" img-circle "src="<?php echo base_url('assets/img/1.jpg');?>" width="200" height="200">
<img class=" img-rounded "src="<?php echo base_url('assets/img/12.jpg');?>" width="200" height="200">
Above code that we are write (assets/img/12.jpg) & above image show directory ...
No comments: