Lokesh Badavath has Published 102 Articles

How to create a Bibliography with HTML?

Lokesh Badavath

Lokesh Badavath

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

2K+ Views

Bibliography is a list of the written sources of information on a subject. We use tag in HTML, to create a bibliography section. The tag defines the work on a subject. The tag is also used to add work title a song, a painting, a movie, etc. ... Read More

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

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

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 unordered list with image bullets in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 18-Oct-2022 11:07:31

7K+ 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 create an unordered list with square bullets in HTML?

Lokesh Badavath

Lokesh Badavath

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

9K+ 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 circle bullets in HTML?

Lokesh Badavath

Lokesh Badavath

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

8K+ Views

An unordered list is unordered list of items marked with bullets, circle, disc and square. It gives you the ability to control the list in the context. Allow us to group a set of related items in lists. HTML support ordered list, unordered list and we have to use the ... 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

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

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

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

568 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

Advertisements