Aman Gupta has Published 87 Articles

How to create the loop structure in LESS

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:54:20

98 Views

Overview Loops make our code clean and help to run the same lines of code multiple times. This makes a code to not to write the same lines of code multiple times. So to style the multiple containers and objects the same can be done by writing a line of ... Read More

How to create a link with media attribute in HTML5

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:50:05

335 Views

Overview There are many types of attributes in HTML5, these attributes provide additional functionality to the page. The media attribute is used with the link tag which has different values which are used in different states. These values are: print, all, screen, speech. The ‘print’ value is used with the ... Read More

How to create the LESS file and how to compile it

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:47:48

460 Views

Overview  A Leaner Style Sheets (LESS) is a dynamic preprocessor language the base language of it is Cascading Style Sheet (CSS). All the preprocessor languages are the upgraded version of the base language, so the LESS also has many more additional features. The LESS has a feature of variable, parent ... Read More

How to create Home icon using jQuery Mobile

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:23:12

274 Views

Overview The home icon can be created from the jQuery mobile icons library. This home icon is useful in the navbar area of a web page for navigation to the home page. So the home icon gives an attractive look to the navbar of the webpage. To create a home ... Read More

How to create a header cell in a table using HTML5

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:08:07

189 Views

Overview A cell in a table is a convergence of two things, a row and a column. The header is the top row of the table whose columns contain a category name of what category the data will be in below cells. So as in this problem we are going ... Read More

How to create a group of related options in a drop-down list using HTML

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:06:28

392 Views

Overview A group of related options is a group in which all the items lie under the same category. For example apple, banana, kiwi all lie under the same group called fruits and BMW, Audi, G-Wagon these all lie under a category of cars. So sometimes to give a good ... Read More

How to create Grid icon using jQuery Mobile

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 14:04:28

129 Views

Overview The Grid icon in any web application can also be developed using jQuery Mobile, as the jQuery mobile icon library provides the benefit of many icons. So to create the jQuery Grid icon there are some pre-built classes by the jQuery icon library that can be used to create ... Read More

How to create a form with custom buttons in HTML

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 13:59:53

309 Views

Overview Buttons are the components in HTML which perform a certain action when clicked. Various buttons perform various actions. The HTML has some predefined buttons with a certain type of action. In a HTML form when the tag is used by default, the simple button inside the form tag ... Read More

How to create form dynamically with the JavaScript

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 13:59:00

4K+ Views

Overview To create a HTML form fully dynamic can be created using some of the Document Object Model (DOM) methods such as createElement(), setAttribute(), appendChild(). These DOM methods will help us to build a dynamic HTML form. Our approach to building this dynamic form will be by creating all the ... Read More

How to create a FAQ page using JavaScript

Aman Gupta

Aman Gupta

Updated on 11-Apr-2023 13:54:40

423 Views

Overview The Frequent Asked Question (FAQ) is the main feature for the website which deals with the selling of products, registration for training or companies in a particular domain. There are many problems which arise for many users or can arise, so these questions and the solution for these problems ... Read More

Advertisements