Bootstrap is popular open-source front-end framework its widely used for web development. Bootstrap is developed by Twitter and has become standard tool in the web development. It provides a set of pre-designed, responsive design components to help web developers quickly and easily create visually appealing and consistent websites applications. I will guide you Bootstrap Carousel […]
Category: HTML
How to add Bootstrap to a core PHP website
I am explaing you how to add Bootstrap to a core PHP website. it involves including the necessary Bootstrap files in project and Bootstrap classes to style your HTML elements. Here’s some small step-by-step guide: 1. Download Bootstrap library Firstly we need to download Bootstrap from the official Bootstrap website (https://getbootstrap.com/). we can choose to […]
How to use Inline & Inline-block display in CSS
I am explaining you, how to use Inline & Inline-block display in CSS. display properly define how the components are going to be place/show. Syntax : Inline-block display an element as an inline-level block container. in inline-block the top and bottom margins/paddings are respected. you can set height and width values of block. Output : […]
How to extract data/content between HTML Tags in PHP
I am explaining you, how to extract data/content between HTML Tags in PHP.preg_match() function provide functionality to extract text between HTML tags with REGEX in PHP. we can get content between tags with the use of regular expressions with preg_match() function in PHP. Example : we can find result will be stored in $matchdata variable. […]
How to Disable a Anchor Tag in HTML using css, jquery and javascript ?
you want to disable anchor tag in html using css, jquery and javascript. you will learn how to disable a tag in html. I am explaining you, how to disable anchor tag in html using css. let’s see example : Example 1 : I am explaining you, how to disable anchor tag in html using […]