HTML5 is a new upgrade from HTML 4.01 version that has many new features, advanced functional features, better page views, and many other improvements to match the growing technological needs. The most used and desired elements of HTML5 are , , , , ,,
Top 10 HTML5 New Elements
HTML5 provides new elements to enhance the layout of the document.
1.
The element specifies a portion of a page that includes a separate structure in a document, section, or website and is recommended to be widely distributed or usable. This may be a group post, a journal or daily paper report, a submission to an online newsletter, a remark sent by a customer, or any other substance-free object.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Article Element</title>
</head>
<body>
<article>
<h2>EDUCBA</h2>
<p>EDUCBA (Corporate Bridge Consultancy Pvt Ltd) is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. </p>
</article>
</body>
</html>
Copy after login
Output:
Save the above code in a file with a .html extension.
Run the html file in a browser, and you will get the output shown in the image below.
2.
The element indicates individual content, such as categorizations, maps, images, code articles, etc.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Figure Element</title>
</head>
<body>
<p> EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries.
</p>
<figure>
<img src="educba.png"/>
</figure>
</body>
</html>
Copy after login
Output:
The above code will produce the output as shown in the below image,
3.
The element adds a description for the image.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Figure Caption Element</title>
</head>
<body>
<p> EDUCBA is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries.
</p>
<figure>
<img src="educba.png"/>
<figcaption>EDUCBA (Corporate Bridge Consultancy Pvt Ltd)</figcaption>
</figure>
</body>
</html>
Copy after login
Output:
The above code displays the result as shown in the below image,
4.
The element specifies the header for a document or a section on the page. You can define more than one header in a single document.
The above code displays the result as shown in the below image,
6.
The element is used for displaying a document’s main, i.e., important information.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Main Element</title>
</head>
<body>
<header>
<p>Header information</>
</header>
<main>
<p>Main Information</p>
<article>
<h2>EDUCBA</h2>
<p>EDUCBA is a leading global provider of skill based education...</p>
</article>
</main>
<footer>
<p>Footer Information</>
</footer>
</body>
</html>
Copy after login
Output:
The above code will produce the output as shown in the below image,
7.
The element highlights or marks the text with the background color that attracts the user to a particular text on the document.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Mark Element</title>
</head>
<body>
<article>
<p><mark>EDUCBA</mark> is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries. </p>
</article>
</body>
</html>
Copy after login
Output:
The above code displays the result as shown in the below image,
The above code will produce the output as shown in the below image,
9.
The element defines the document’s standalone section or specific region.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Section Element</title>
</head>
<body>
<article>
<h2> Main Article </h2>
<p>Content of the main header will be displayed here...</p>
<section>
<h2>Section One</h2>
<p>Content of the first section will be displayed...</p>
</section>
<section>
<h2>Section Two</h2>
<p>Content of the second section will be displayed...</p>
</section>
</article>
</body>
</html>
Copy after login
Output:
The above code displays the result as shown in the below image,
10.
The tag is a subpart of the tag which provides the text that can be displayed or hidden when the user clicks the heading.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Summary Element</title>
</head>
<body>
<details>
<summary>
EDUCBA - Corporate Bridge Consultancy Pvt Ltd
</summary>
<p>It is a leading global provider of skill based education addressing the needs 500,000+ members across 40+ Countries.</p>
</details>
</body>
</html>
Copy after login
Output:
When you run the above code, it will display the result as shown below,
As shown in the image, click on the heading, and it will display the hidden text shown below the image,
Conclusion
So far, we have seen how new HTML5 elements are useful for various website creation tasks. These new elements read the document in a more accurate & standard way and develop more complex and efficient web apps. The new HTML5 elements give some additional extra features to generate interactive websites.
The above is the detailed content of Html5 New Elements. For more information, please follow other related articles on the PHP Chinese website!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn