
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
Found 2202 Articles for HTML

12K+ 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 using JavaScript. Except for , , , , , , , , , , and , it supports all HTML elements. In HTML, we can use the onclick attribute and associate it with a JavaScript function. For greater flexibility, we can also use JavaScript's addEventListener() method and pass a click ... Read More

3K+ Views
The or division tag is used to group HTML elements in a web page, allowing us to create distinct sections with similar functionality that can be easily styled using the Id or class attribute. A HTML is a block-level element that, by default, does not display any other HTML elements adjacent to it. Div is the most useful tag in web development because it allows us to separate data in web pages and create specific sections for specific data or functions in web pages. It is used in pairs. The content is written in between the opening ... Read More

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 CSS property defines the line style for an element's border on all four sides. It is a shorthand for the properties: border-bottom-style, border-left-style, border-right-style, and border-top-style. It lets us choose from the following border styles: none, solid, dotted, dashed, double, groove, ridge, inset, outset, and hidden. When the value of ... Read More

4K+ Views
In HTML, when we have to print a table with many rows, there is an issue of keeping the data together when the page ends. When page breaks are not monitored, they can also split a row into two halves and cut the table in an abrupt manner. It can mess up the entire formatting and disrupt the layout. In this tutorial, we will explore the methods for printing the contents of a table with many rows when a page break occurs. The page-break-inside and page-break-auto The CSS page-break property can be used to handle page-breaks when we have a ... Read More

472 Views
In HTML, the tag stands for horizontal rule and is most commonly displayed as a horizontal line used to separate content (or define a change) in an HTML page. The tag is an empty tag that does not need to be followed by a closing tag. Following is the syntax of this tag – ... It supports the following attributes: align: It determines the rule's alignment (left/ centre/ right) on the page. The default value(left) is used if no value is specified. color: It sets the rule's colour using a colour name or hexadecimal value. ... Read More

6K+ Views
In HTML, unordered lists are collections of items that do not have to be in any particular order. To list these items, we frequently use simple bullet points and that is why they are often known as bulleted lists. An unordered list begins with the tag and closes with a tag. The list items begin with the tag and end with tag. The tag, which stands for unordered list, is the li tag's parent. This means that the tag is the tag's child. Following is the syntax List of Items There can be ... Read More

2K+ Views
A list is a record of short pieces of related information used to display the data or any information in web pages in an ordered or unordered form. Lists are used to group related pieces of information together so that they are clearly associated with one another and easy to read. They are beneficial from a structural point of view because they aid in the creation of a well-structured, more accessible, and easy-to-maintain document. They are also useful because they provide specialized elements to which CSS styles can be applied. HTML lists enable web developers to organize a collection of ... Read More

2K+ Views
Word wrapping is the process of automatically moving a word at the end of a line onto a new line in order to keep the text within the margins. In HTML, this translates to the very fact that text within an element wraps according to the bounds of that element.Example Let us consider an example where we have a element with some text and it is styled to have a fixed width. div{ ... Read More

2K+ Views
The HTML autocomplete attribute specifies whether autocomplete should be enabled or disabled for an input field. It enables the browser to make a prediction about the value. When a user starts typing in a field, the browser should display fill-in options based on previously typed values. It is available on elements such as elements, elements, and elements as they accept a text or numeric value as input. It takes two attribute values, on and off. On: It specifies that the autocomplete is enabled. Off: It indicates that autocomplete is turned off. Browsers enable the ... Read More

735 Views
The HTML element represents a document section with interactive controls for submitting data. It is a container for input elements such as text, email, numbers, radio buttons, checkboxes, submit buttons, and so on. Forms are created by embedding input fields within paragraphs, preformatted text, lists, and tables. This provides a great deal of freedom in designing form layouts. Following is the syntax – There are numerous form elements. A few of them are discussed below: input: It specifies a data entry field for the user. label: It defines a label for ... Read More