Lokesh Badavath has Published 102 Articles

How to create headings in HTML page?

Lokesh Badavath

Lokesh Badavath

Updated on 11-Nov-2022 07:43:28

5K+ Views

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

How to create an HTML Document?

Lokesh Badavath

Lokesh Badavath

Updated on 11-Nov-2022 07:38:08

16K+ Views

HTML stands for Hyper Text Markup Language. It is the most widely used language to write web page. HTML document defines the structure of web page. HTML document begins with the declaration, and the HTML documents start and end with the and tags. HTML document is split ... Read More

How to create a floating Layout in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 08:17:07

2K+ Views

Layout make the web pages look better and arrange the visual elements on web page. It establishes the overall appearance of the web page. The HTML Layouts specifies the arrangement of different components on a web page. There are many HTML elements that defines different section of a web page. ... Read More

What are the different tags to define special meta information in HTML page?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 07:09:39

176 Views

Metadata means information about data. The tag in HTML provides complete information about HTML Document. Adding the meta tag while making the webpage or website is a good practice because search engines use this meta tag to understand the information about the website. It is also helpful while searching ... Read More

How do we do variable formatting using the tag in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 07:04:12

901 Views

We use tag to define a variable in programming or in a mathematical expression. It is also used to format text in a document. The content inside this tag is typically displayed in italic font. Syntax Variable… Example 1 Following is an example to perform variable formatting using ... Read More

How do we reset all the input fields in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 07:02:29

2K+ Views

In this article, we are going to discuss how do we reset all the input fields in HTML forms. Here, we use the reset button to clear the input fields in HTML forms. In the HTML forms, we use the tag to take user input. To clear all the ... Read More

How we can group data in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:58:03

4K+ Views

We use the tag, to group related data in HTML forms. This tag creates a box around the related elements on the web page. The tag is used inside the tag to give a caption to the group or name to the group. Syntax ….. ... Read More

Why do we use reset button in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:54:30

841 Views

The reset button is used to reset all the input fields in HTML forms. It gets added using the tag attribute type. The defines a reset button which resets all form values to its initial values. Syntax Example 1 An example to implement the usage ... Read More

How do we take password input in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:52:08

6K+ Views

We use the tag by assigning password to the type attribute, to take a password input in HTML form. It hides the character as soon as a we enter the characters of the password set. This is also a single-line text input. Syntax Male ... Read More

How do we use checkbox buttons in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:50:08

1K+ Views

Using HTML forms, we 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, text field area etc. To use radio buttons in HTML forms to get user ... Read More

Advertisements