Lokesh Badavath has Published 99 Articles

How to create an ordered list with list items numbered with lowercase roman numbers in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 11:27:00

8K+ Views

A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is marked with the numbers by default. You can create an ordered list using the tag and, define the list ... Read More

How to create an ordered list with list items numbered with uppercase letters in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 11:23:28

10K+ Views

A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is marked with the numbers by default. You can create an ordered list using the tag and, define the list ... Read More

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

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 11:05:34

10K+ Views

A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is numbered and an unordered list is not numbered it can be created with the tag and define the items ... Read More

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

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 11:01:59

5K+ Views

An ordered list is numbered and an unordered list is not numbered it can be created with the tag and define the items of the list using the tag . We can create 4 types of unordered list in HTML − disc − This creates an unordered list marked ... Read More

How to use an HTML tag inside HTML table?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 10:57:56

6K+ Views

We can easily add HTML tag inside a table. The HTML tag should be placed inside the tag. For example, adding a paragraph … tag or other available tags inside the tag. Syntax Following is the syntax to use an HTMl tag inside HTML table. ... Read More

How to add space around table border in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 10:55:38

8K+ Views

We use the CSS property border-spacing, to set border spacing for an HTML table. It adds space around the table border between the adjacent cells in a table. We should specify the value in pixels for the border-spacing property to add. Syntax Following is the syntax for adding space around ... Read More

How to create a table with a caption?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 10:52:20

838 Views

We use the tag, to create a table with caption in HTML. The caption tag will be inserted immediately after the tag. We can add only one caption for one table. By default, the alignment of this tag is center. We can change the alignment using CSS property ... Read More

How to create a collapsed border in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 10:50:33

16K+ Views

We use border-collapse property to create a collapsed border in HTML. The border-collapse is a CSS property used to set the table borders should collapse into a single border or be separated with its own border in HTML. Border-collapse property has four values: separate, collapse, initial, inherit. With the ... Read More

How to set horizontal header for a table?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 10:48:06

3K+ Views

Tables in HTML can have horizontal header and vertical header. For the horizontal header, we need to set all inside a single  tag. Syntax Following is the syntax to set horizontal header for a table − horizontal header1… ... Read More

Previous 1 ... 6 7 8 9 10
Advertisements