
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Lokesh Badavath has Published 99 Articles

Lokesh Badavath
21K+ 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

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

Lokesh Badavath
533 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

Lokesh Badavath
1K+ 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

Lokesh Badavath
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

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

Lokesh Badavath
1K+ 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

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

Lokesh Badavath
2K+ 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

Lokesh Badavath
6K+ 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. In this article, let us learn how to use radio ... Read More