Lokesh Badavath has Published 102 Articles

How to clear all the input in HTML forms?

Lokesh Badavath

Lokesh Badavath

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

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

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

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

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

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

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

How to change the color of links in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 06-Sep-2023 14:11:24

36K+ 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 used to link from one page to another. The href attribute is used with the tag, which ... Read More

What are table rowspan and colspan in HTML?

Lokesh Badavath

Lokesh Badavath

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

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

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

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

Advertisements