How to remove .html extension from URL of a static page ?
All the pages on the website have a structure that is given by HTML. HTML provides the structure to content, text, tables, headings, and lists on the webpage which makes the page easy to read. While saving an HTML document it has an extension as .html. Therefore, the URL of the website has a .html extension. The .html extension can be easily removed by editing the .htaccess file....
read more
How to place Font Awesome icon to input field ?
Place Font Awesome icon in your form is an innovative idea, that will bring attention to your website. It is as simple as putting Font Awesome icon on any button. The <i> tag and <span> tag are used widely to add icons on the webpages. To add any icons on the webpages, it needs the font-awesome link inside the head section. The font-awesome icon can be placed by using the fa prefix before the icon’s name....
read more
How to Align modal content box to center of any screen?
...
read more
How to set fullscreen iframe?
The iframe in HTML stands for Inline Frame. The ” iframe ” tag defines a rectangular region within the document in which the browser can display a separate document, including scrollbars and borders. An inline frame is used to embed another document within the current HTML document. For the fullscreen Iframe, you have to cover the entire viewport....
read more
ReactJS Keys
React JS keys are a way of providing a unique identity to each item while creating the React JS Lists so that React can identify the element to be processed....
read more
How to clear cache memory using JavaScript?
Unlike mobile applications, a web browser doesn’t allow to clear its cache memory. Though we cannot clear all cache of the client browser it is still possible to load the webpage without caching by using meta tags in the HTML code....
read more
How to align flexbox columns left and right using CSS ?
The flex columns can be aligned left or right by using the align-content property in the flex container class. The align-content property changes the behavior of the flex-wrap property. It aligns flex lines. It is used to specify the alignment between the lines inside a flexible container....
read more
How to convert an array to CSV file in PHP ?
To convert an array into a CSV file we can use fputcsv() function. The fputcsv() function is used to format a line as CSV (comma separated values) file and writes it to an open file. The file which has to be read and the fields are sent as parameters to the fputcsv() function and it returns the length of the written string on success or FALSE on failure....
read more
How to change Hamburger Toggler color in Bootstrap ?
The hamburger toggler color can be changed in Bootstrap 4 using 2 methods: Method 1: Using the inbuilt color classes The hamburger toggler color is controlled by the two inbuilt classes used for changing the color of the content in the navigation bar:...
read more
How to display bootstrap carousel with three post in each slide?
A Bootstrap Carousel is a slideshow for rotating through a series of contents. It is built with CSS and Javascript. It works with a series of photos, images, texts, etc. It can be used as an image slider for showcasing a huge amount of content within a small space on the web page, as it works on the principle of dynamic presentations....
read more
Signup form using PHP and MySQL Database
The task is to create and design a sign-up form in which if the user enters details, the HTML form data are inserted into our MySQL server database....
read more
How to Create a Dropdown List with Array Values using JavaScript ?
In this article, we will see how to add elements to the select element from the JavaScript array. We can also get selected values in the dropdown list using JavaScript. Here we will populate the dropdown list with an array. Below is a description of popular approaches used in JavaScript....
read more