Lokesh Badavath has Published 102 Articles

How do we use radio buttons in HTML forms?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:45:18

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

How do we do computer output formatting using the tag in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:39:51

150 Views

We use tag to do computer output format. It is a phrase tag. It is used to define and identify the sample output of a computer program. It will display the text inside the element in monotype font. Syntax The text… Example 1 Following is a simple ... Read More

How to use the tag for keyboard input formatting in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:39:05

319 Views

We use tag to define keyboard input. It is a phrase tag that is used to identify text that represents user keyboard input. The content inside is displayed in the default monospace font by most browsers. We can override the font using style sheet. Syntax Keyboard text… ... Read More

How to use the tag to define the base URL for an HTML page?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:37:10

1K+ Views

In this article, we will learn how to use the tag to define the base URL for an HTML page. In HTML, different elements have attributes that contain link to the other resources. The values of these attributes are URL’s, these can be absolute or relative URL’s. The ... Read More

How do we use different CSS classes in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:35:12

321 Views

We specify a class for an HTML element using the class attribute. Multiple HTML elements can share the same class. And using various attributes of the class, like changing colors, fonts, etc., we can define styles rules for these HTML elements. The elements having that class will be formatted according ... Read More

How to create a flexbox Layout in HTML?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:17:51

720 Views

To create a flexbox layout in HTML, we use CSS Float. We have multiple layouts to show content on a web page. CSS Float is one of the ways to multi-column layouts. Flexbox layout introduced in CSS3. This layout helps in adjusting the screen size and to get displayed correctly ... Read More

How do we style HTML elements using the span tag ?

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:13:16

2K+ Views

We use tag to color a part of text or a part of the document. This tag is mainly used to group similar content together for easy styling. We use inline style for tag, as it applies a style to inline elements. If we want to make some ... Read More

How do we style HTML elements using the division tag

Lokesh Badavath

Lokesh Badavath

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

423 Views

The tag is used as the container for the HTML elements. With the help of this tag, we can easily define a section of a HTML Document. It is also used to group large sections of HTML elements together and easily format them. The tag is used with ... Read More

How we can put three divisions

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:10:23

8K+ Views

The tag defines the division of the HTML document. This tag is mainly used to group similar content together for easy styling and also used as the container for the HTML elements. We use CSS property to place three divisions tags side by side in HTML. The CSS ... Read More

How we can put two divisions

Lokesh Badavath

Lokesh Badavath

Updated on 19-Oct-2022 06:09:16

8K+ Views

The tag defines the division of the HTML document. This tag is mainly used to group similar content together for easy styling. It is also used as the container for the HTML elements, we can easily style this tag using the class or id attribute. We can place content ... Read More

Advertisements