Lokesh Badavath has Published 99 Articles

What is horizontal rule in HTML Page?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Nov-2023 21:06:13

2K+ Views

The tag defines a break in an HTML page, or it is used to separate content in an HTML page using a horizontal line and is most often displayed as a horizontal rule. The tag defines a break with the horizontal line in an HTML page. The ... Read More

How to create an unordered list without bullets in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Oct-2023 14:03:39

20K+ 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 set table width in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 21-Oct-2023 13:42:41

27K+ Views

We use inline style attribute, to set the table width in HTML. The attribute is used within the HTML tag, with the CSS property width to set table width. Syntax Following is the syntax to set table width in HTML. … Example Following is the example program ... Read More

How to create space between list bullets and text in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 04-Oct-2023 14:10:31

29K+ Views

We use CSS padding-left property, to create a space between bullets and the text. It is used to set the padding area on the left of an element. HTML support ordered list, unordered list and HTML support ordered list, unordered list and we must use the tag, to create ... Read More

How to clear all the input in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 14-Sep-2023 15:51:17

29K+ Views

Using HTML forms, you can easily take user input. The tag is used to get user input, by adding the form elements. Different types of form elements include text input, radio button input, submit button, etc. The tag, helps you to take user input using the type attribute. ... Read More

How to set cell width and height in HTML?

Lokesh Badavath

Lokesh Badavath

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

42K+ Views

We use the inline CSS style, to set the cell width and height. The HTML style element contains width and height attributes. To set cell width and height we should place these attributes with specified values with pixels inside the tag. Syntax Following is the syntax to set cell ... Read More

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

Lokesh Badavath

Lokesh Badavath

Updated on 08-Sep-2023 23:28:16

44K+ 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 read data from *.CSV file using JavaScript?

Lokesh Badavath

Lokesh Badavath

Updated on 08-Sep-2023 23:20:20

41K+ Views

In this article, we are going to learn how to read data from *.CSV file using JavaScript. To convert or parse CSV data into an array, we need JavaScript’s FileReader class, which contains a method called readAsText() that will read a CSV file content and parse the results as string ... Read More

How to limit an HTML input box so that it only accepts numeric input?

Lokesh Badavath

Lokesh Badavath

Updated on 08-Sep-2023 23:10:54

38K+ Views

In this article, we will learn how to limit an HTML input box so that it only accepts numeric inputs. We use the to limit an HTML input box so that it only accepts numeric inputs. By using this, we will get a numeric input field. Syntax Following is ... Read More

How to create tables in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 06-Sep-2023 22:01:31

33K+ Views

HTML tables allow us to arrange data into rows and columns on the web page. We use the tag, to create table in HTML. A table consist of rows and columns. Table heading, row and column and table data can be set using one or more , , and ... Read More

Advertisements