Lokesh Badavath has Published 102 Articles

How to use an animated image in HTML page?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 13:17:00

45K+ Views

Animated images in HTML are an image on a web page that moves. It is in GIF format i.e. Graphics Interchange Format file. We need to use the tag with the src attribute to add an animated image in HTML. The src attribute adds the URL of the image ... Read More

How to merge table cells in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 13:15:09

57K+ Views

We use the colspan and rowspan attribute, to merge cells in HTML. The rowspan attribute is for the number of rows a cell should merge, whereas the colspan attribute is for the number of columns a cell should merge. The attribute should be placed inside the tag. Syntax Following ... Read More

How to remove underline from a link in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 12:27:12

47K+ Views

We use inline style attribute with the CSS property text-decoration to remove underline from a specified link in HTML. Syntax Following is the syntax to remove underline from a link in HTML. HTML tutorial Example Following is the example program to remove underline from a link in HTML. DOCTYPE ... Read More

How to limit the number of characters allowed in form input text field?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 10:53:26

62K+ Views

In this article, we will learn how to limit the number of characters allowed in form input text field. We use tag to get user input in HTML. To give a limit (or range) to the input field, we use the min and max attributes, which is to specify ... Read More

How to underline a text in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 10:06:31

65K+ Views

Underlined text is used to help draw attention to the text. We use the tag, to underline a text in HTML. It represents a text in a different style from another text in the content of the web page. We can also use the style attribute, to underline a ... Read More

How to make page links in HTML Page?

Lokesh Badavath

Lokesh Badavath

Updated on 01-Sep-2023 02:14:02

79K+ Views

A link is a connection from one Web page to another web page. We can add page links to a web page. HTML links are hyperlinks. The tag defines a hyperlink and is used to link from one page to another. The href attribute is used with the tag, ... Read More

How to Insert an Image in HTML Page?

Lokesh Badavath

Lokesh Badavath

Updated on 31-Aug-2023 02:18:20

88K+ Views

Images make content more interesting by helping readers understand the content better on the web page. We can insert images into the HTML page. To insert image in an HTML page, use the tags. It is an empty tag, containing only attributes since the closing tag is not required. ... Read More

How to center align text in table cells in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 31-Aug-2023 02:10:42

108K+ Views

We use the CSS property text-align, to center align text in table cells. We use inline, internal style sheet for text alignment in table cells. The text-align property of CSS sets the alignment of the content in and . By default, the content of are center-aligned and the ... Read More

How to set font color in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 29-Aug-2023 07:35:05

147K+ Views

We use the style attribute to set the font color in HTML. The style attribute specifies an inline style for an element, with the CSS color property. The attribute is used with the HTML tag, with the CSS color property. HTML5 do not support the tag, so the ... Read More

How to set background color in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 29-Aug-2023 07:08:04

228K+ Views

Setting the background color of a web page or an element on the web page, enable us to create unique layouts for the web page. To set the background color in HTML, use the style attribute, with the CSS property background-color inside the body tag of the HTML document. HTML5 ... Read More

Advertisements