Aman Gupta has Published 86 Articles

How to create a link with media attribute in HTML5

Aman Gupta

Aman Gupta

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

355 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

529 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

302 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

198 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

438 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

145 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

363 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

5K+ 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

571 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

How to Create a Dropdown List with Array Values using JavaScript

Aman Gupta

Aman Gupta

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

7K+ Views

Overview To attain the options in the Dropdown list without disturbing the frontend of the web page can be with the help of array. As in the array we can store as many numbers of the option or values. So without directly putting those values in the HTML part of ... Read More

Advertisements