What has been dropped?

  1. The HGROUP Element: The HGROUP element was created to group together one or more H1-H6 elements, usually a title and its subtitle. It was designed for a document outlining algorithms, with the goal of omitting all but the highest level heading from the resulting document outline.
  2. The CENTER Element: All of its content is horizontally centered within its containing element. It has always come in handy for centering headings and tables.
  3. The SCOPED Attribute: The SCOPED attribute was unique to the STYLE element and served as a boolean switch, indicating whether or not the styles should be applied to the STYLE block’s container element and child elements rather than the entire document.

Example:

HTML
<!DOCTYPE html>
<html>

<head>
    <title>HTML 5</title>
    <style>
        .GFG {
            font-size: 40px;
            font-weight: bold;
            color: green;
        }
        
        body {
            text-align: center;
        }
    </style>
</head>

<body>
    <div class="GFG">w3wiki</div>
    <aside>
        <div>A computer science portal for geeks</div>
    </aside>
</body>

</html>

Output:


HTML5

HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. Hypertext defines the link between the web pages. A markup language is used to define the text document within the tag which defines the structure of web pages.

HTML 5 is the fifth and current version of HTML. It has improved the markup available for documents and has introduced application programming interfaces(API) and Document Object Model(DOM). It has introduced various new features like drag and drop, geo-location services, multimedia features, easy doctype declaration, offline data storage, graphic elements, and various semantic tags like the article, section, header, footer, figure, summary, etc. It is supported by all modern browsers.

Similar Reads

Why HTML5?

Below are some differences that may or may not have caught your attention since developers started using HTML5:...

What’s new in HTML5?

Audio and Video: HTML5 has two key additions: audio and video tags. It enables website developers to insert video or music into their pages. Vector Graphics: This is a new feature in the updated version that has had a significant impact on the use of Adobe Flash in websites. It may be used to create visuals using a variety of shapes and colors using scripting, most commonly JS. Scalable vector graphics are simple to generate and manipulate. Header and Footer: There is no need to use a div> tag to separate the two elements with these new tags. The footer appears at the bottom of the page, while the header appears at the top. The browser will know what to load first and what to load later if you use the HTML5 elements header and footer. Figure and Figcaption: The

element in HTML5 can be used to mark up a photo in a document, and the
element can be used to define a caption for the photo. A caption for a figure element is defined using the
tag. Nav tag: The

What has been dropped?

The HGROUP Element: The HGROUP element was created to group together one or more H1-H6 elements, usually a title and its subtitle. It was designed for a document outlining algorithms, with the goal of omitting all but the highest level heading from the resulting document outline. The CENTER Element: All of its content is horizontally centered within its containing element. It has always come in handy for centering headings and tables. The SCOPED Attribute: The SCOPED attribute was unique to the STYLE element and served as a boolean switch, indicating whether or not the styles should be applied to the STYLE block’s container element and child elements rather than the entire document....