HTML Articles

Page 115 of 151

How to use autocomplete attribute in HTML?

Kumar Varma
Kumar Varma
Updated on 16-Mar-2026 709 Views

The HTML autocomplete attribute controls whether browsers should automatically fill in form fields based on previously entered values. When set to on, the browser provides suggestions from the user's input history. When set to off, it disables this functionality for enhanced privacy or security. The autocomplete attribute can be applied to both elements (affecting all contained inputs) and individual elements for granular control. Syntax Following is the syntax for using the autocomplete attribute with form elements − ... Following is the syntax for using the autocomplete attribute with input elements − ...

Read More

How to Insert an Image in HTML Page?

Lokesh Badavath
Lokesh Badavath
Updated on 16-Mar-2026 95K+ Views

To insert an image in HTML page is a very common and easy task that enhances the appearance of any web page. It makes a web page look more attractive and visually engaging. In this article, we will explore three different approaches to insert an image in HTML page using HTML tags and CSS properties. Each method serves different purposes and offers unique advantages depending on your specific requirements. Approaches to Insert an Image in HTML Page Here is a list of approaches to insert an image in HTML page which we will be discussing in this ...

Read More

How to Change the Color of Links in HTML?

Lokesh Badavath
Lokesh Badavath
Updated on 16-Mar-2026 41K+ Views

HTML links are hyperlinks that connect one web page to another. By default, links appear in specific colors: unvisited links are blue and underlined, visited links are purple and underlined, and active links are red and underlined. However, we can customize these colors using CSS to match our website's design. Syntax Following is the basic syntax for creating HTML links − Link text To change link colors, we use CSS pseudo-classes with the following syntax − a:link { color: colorname; } /* Unvisited link */ a:visited { ...

Read More

How to create an unordered list with circle bullets in HTML?

Lokesh Badavath
Lokesh Badavath
Updated on 16-Mar-2026 11K+ Views

An unordered list displays a collection of items marked with bullets such as circles, discs, or squares. The tag creates the list container, while tags define individual list items. By default, unordered lists use solid disc bullets, but you can customize the bullet style using CSS. To create circle bullets specifically, you use the CSS list-style-type property with the value circle. This property can be applied either inline with the style attribute or through external CSS stylesheets. Syntax Following is the syntax to create an unordered list with circle bullets − ...

Read More

How to Create an Unordered List with Image Bullets in HTML?

Lokesh Badavath
Lokesh Badavath
Updated on 16-Mar-2026 9K+ Views

An unordered list in HTML displays items without any numbering or ordering. It is created using the tag with individual list items defined using tags. By default, unordered lists use simple bullet points, but we can customize these bullets to use images for a more visually appealing design. HTML provides several built-in bullet styles for unordered lists − disc − Creates solid circular bullets (default style) circle − Creates hollow circular bullets square − Creates solid square bullets none − Removes all bullet markers Beyond ...

Read More

How to add a list item in HTML?

Sindhura Repala
Sindhura Repala
Updated on 16-Mar-2026 2K+ Views

To add a list item in HTML, use the tag. It can be used inside ordered lists (), unordered lists (), and menu lists (). In an ordered list, the list items are displayed with numbers or letters. In an unordered list and menu list, the list items are displayed with bullet points. Syntax Following is the syntax for the list item tag in HTML − Content The tag must be placed inside a list container like , , or . Attributes The tag supports the following specific attributes ...

Read More

How to display a summary for a given in HTML5?

Sindhura Repala
Sindhura Repala
Updated on 16-Mar-2026 402 Views

The tag in HTML5 provides a visible heading for the element. When users click the summary heading, it toggles the visibility of the additional content inside the details element, creating an interactive collapsible section. The tag must be the first child element of the tag. If no summary is provided, the browser displays a default disclosure triangle or "Details" text. Syntax Following is the syntax for using the element − Heading text The tag supports all global attributes ...

Read More

How do we add a table row in HTML?

Alshifa Hasnain
Alshifa Hasnain
Updated on 16-Mar-2026 962 Views

In this article, we will learn to add a table row in HTML. Tables are a fundamental part of web development, used to display structured data in rows and columns. In HTML, you can add table rows using the (table row) element inside a structure. Syntax Following is the syntax for adding a table row in HTML − Cell content Cell content Basic Table Structure Before adding rows, let's ...

Read More

How to use Python Regular expression to extract URL from an HTML link?

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Mar-2026 3K+ Views

In this article, we will learn how to extract URLs from HTML links using Python regular expressions. A URL (Uniform Resource Locator) identifies the location of a resource on the Internet, consisting of components like protocol, domain name, path, and port number. Python's re module provides powerful regular expression capabilities for parsing and extracting URLs from HTML content. Regular expressions allow us to define search patterns that can identify and extract specific URL formats from text. Regular Expressions in Python A regular expression is a search pattern used to find matching strings in text. Python's re module ...

Read More

How to use GoJS HTML5 Canvas Library for drawing diagrams and graphs?

Nancy Den
Nancy Den
Updated on 16-Mar-2026 603 Views

GoJS is a powerful JavaScript library for creating interactive diagrams, flowcharts, organizational charts, and network graphs on HTML5 Canvas. It provides a model-view architecture where Models hold arrays of JavaScript objects describing nodes and links, while Diagrams act as views to visualize this data using actual Node and Link objects. When you construct a diagram with GoJS, it creates an HTML5 Canvas element that gets placed inside a specified DIV element on your web page. This makes it ideal for creating dynamic, interactive visualizations that users can manipulate. Getting Started with GoJS To start using GoJS, you ...

Read More
Showing 1141–1150 of 1,509 articles
« Prev 1 113 114 115 116 117 151 Next »
Advertisements