
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
Found 10483 Articles for Web Development

900 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 on multiple display devices and makes the web page responsive. With the collapse of a margin of content, the flexbox does not collapse. It adjusts according to screen size. Here’s the flexbox layout, which you can easily create. On resizing the page, the following is visible. The page adjusts according ... Read More

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. Following are the HTML elements used for HTML layout − S.No. Attribute & Description 1 header It specifies a header for a section of the content on the web page. 2 section It represents a section of the content on web page. ... Read More

709 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 to the defined rule. This is known as class selector. For selecting elements with a specific class, you need to write a period (.) character, followed by the name of the class, for example, let us look at the “.black” class, .black { color: #000000; } ... Read More

3K+ 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 text or any other content different from the rest, we wrap it in a tag, and add class attribute to identify, then add attribute value for styling. Syntax Following is the syntax for the tag. Text… Example 1 Given below is an example to style HTML ... Read More
How do we style HTML elements using the division tag
Updated on 19-Oct-2022 06:12:08
541 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 block-level elements. The tag accepts all the CSS properties and styles the elements in it using attributes like class and id. Syntax Following is the syntax for the tag. Content… Example 1 Given below is an example to add style to the division tag in HTML. ... Read More

541 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 block-level elements. The tag accepts all the CSS properties and styles the elements in it using attributes like class and id. Syntax Following is the syntax for the tag. Content… Example 1 Given below is an example to add style to the division tag in HTML. ... Read More
How we can put three divisions side by side in HTML?
Updated on 19-Oct-2022 06:10:23
10K+ 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 property float is used to achieve this. Syntax Following is the syntax for the tag. Content… Example 1 Following is the example to place three division classes side by side in HTML using CSS property. DOCTYPE html> ... Read More

10K+ 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 property float is used to achieve this. Syntax Following is the syntax for the tag. Content… Example 1 Following is the example to place three division classes side by side in HTML using CSS property. DOCTYPE html> ... Read More
How we can put two divisions side by side in HTML?
Updated on 19-Oct-2022 06:09:16
9K+ 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 inside the tag. Using CSS property, we can place two tags side by side in HTML. By styling we can place the two division classes side by side. Syntax Following is the syntax for the tag. Content… Example 1 Following is the example to place ... Read More

9K+ 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 inside the tag. Using CSS property, we can place two tags side by side in HTML. By styling we can place the two division classes side by side. Syntax Following is the syntax for the tag. Content… Example 1 Following is the example to place ... Read More

668 Views
In layman language, an acronym is a word formed by taking letters of each word in a phrase to form an abbreviation. Acronyms are a subset of abbreviations i.e. abbreviation is a shortened form of a word.The tag isn’t supported in HTML5 and is deprecated now. Do not use. To add abbreviation in HTML, use the tag. Both abbreviation and acronym are the shortened versions and are represented as a series of letters. Some of the examples include, "Mr.", "IST", "MRI", “NASA”, “ISRO” etc. ExampleYou can try to run the following code to add abbreviation in HTML.Live Demo ... Read More

289 Views
Website development included writing code in HTML, CSS, JavaScript and the platform you’ve chosen. Your website may look correct, responsive and developed with website standards, but it may have some internal issues.Tools are provided by W3C, to validate your website code:Validate HTML5Validator.nu is a validator, which validates HTML5, ARIA, SVG 1.1 and MathML 2.0. It checks the complete document and points out where the markup isn’t following the doctype.W3C Markup ValidatorIt checks the HTML doctype and the markup. This validator is for those who are using HTML4 or XHTML1.x doctype. It also validates HTML5, but Validator.nu is considered far better since ... Read More

4K+ Views
Bibliography is a list of the written sources of information on a subject. We use tag in HTML, to create a bibliography section. The tag defines the work on a subject. The tag is also used to add work title a song, a painting, a movie, etc. It indicates citation and whatever comes inside the tag represents work title. The text between the tag renders in italic format. We use tag to list the items and tag to add the title of the subject. Syntax Following is the syntax for the tag. ... Read More