
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Eesha Gandhi has Published 48 Articles

Eesha Gandhi
2K+ Views
The HTML select element represents a control that displays a menu of options. It is used to make drop-down menus so users can choose the value they want. It is a useful feature for gathering data to be sent to a server. The tag is typically used within a ... Read More

Eesha Gandhi
3K+ Views
The HTML input element with the type attribute "radio" represents an option from a group in which no more than one option can be selected at the same time. These groups are typically defined by a number of radio buttons, each of which has the same value in the name ... Read More

Eesha Gandhi
535 Views
Lists are a collection of items that are thought to be one of the best ways to represent information. The list element in HTML is the one that helps us structure the content on our page. It is one of the most commonly used elements, whether for navigation or for ... Read More

Eesha Gandhi
1K+ Views
The HTML table tag displays data in a tabular format (row * column). A row can have multiple columns. Using the element and the , , and elements, we can create a table to display data in tabular form. Each table's rows, headers, and data are specified by ... Read More

Eesha Gandhi
758 Views
A HTML form is a section of a document that includes controls like text fields, password fields, checkboxes, radio buttons, a submit button, menus, and so on. It allows the user to enter any data like name, email address, password, phone number, and so on that will be sent to ... Read More

Eesha Gandhi
2K+ Views
The element is a generic container with no semantic significance. It's frequently used in web authoring for styling, along with the style and class attributes. It can also be useful to add attributes to isolated text spans, such as lang or title. It should only be used when ... Read More

Eesha Gandhi
2K+ Views
HTML Description List or Definition List displays elements in dictionary format. The and tags are used together within the tag in HTML to define terms or give their description. Within a parent definition list, the element is used to pair a definition description with a ... Read More

Eesha Gandhi
11K+ Views
The onclick event generally occurs when the user clicks on an element. It enables the programmer to run a JavaScript function when an element is clicked. This event can be used to validate a form, display warning messages, and much more. This event can be added dynamically to any element ... Read More

Eesha Gandhi
4K+ Views
In an HTML document, the tag is used to represent a form input control. In most cases, the input tag is used within the element to declare input controls that allow users to enter data. Depending on the attribute type, an input field can be of various ... Read More

Eesha Gandhi
5K+ Views
The border shorthand CSS property defines the border of an element. It specifies the border-width, border-style, and border-color values. The border-color property determines the colour of a border. The border-style property specifies the style of the border. The border-width property determines the width of a border. The border-style ... Read More