Lokesh Badavath has Published 99 Articles

What are table rowspan and colspan in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 06-Sep-2023 14:05:41

44K+ Views

The rowspan and colspan are the attributes of tag. These are used to specify the number of rows or columns a cell should merge. The rowspan attribute is for merging rows and the colspan attribute is for merging columns of the table in HTML. These attributes should be placed ... Read More

How to set cell padding in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 15:53:32

51K+ Views

We use the inline style attribute, to set cell padding in HTML. Cell padding is the space between cell borders of the table and the content within a cell of the table. The style attribute is used inside the HTML tag, with the CSS property called padding with a ... Read More

How to set Heading alignment in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 02-Sep-2023 13:50:46

57K+ Views

Headings are the titles or subtitles of the content that you want to display on the web page. Headings help us to get an idea of the content on the web page. Headings and subheadings represent the key concepts ideas and supporting ideas in the content of the web page. ... Read More

How to use an animated image in HTML page?

Lokesh Badavath

Lokesh Badavath

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

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

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

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

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

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

84K+ 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 center align text in table cells in HTML?

Lokesh Badavath

Lokesh Badavath

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

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

Advertisements