Ads (728x90)

Techonlogy

Subscribe Here

Sponsor

Social Share

Recent

Business

Video

Gallery

videos

HTML5 is the draft determination for the most up to date variant of the HTML Language, which is concurred upon by the World Wide Web Consortium (W3C). The HTML5 stipulation is a piece of a largest bent of technologies that the W3C terms the "open web platform," which more or less means it permits us to manufacture sites and web applications that work anyplace. At the point when individuals allude to the term HTML5, they are typically discussing the "open web platform."

There are loads of advantages of utilizing HTML5 with your projects, which we will talk in this article.

When you first open a HTML5 archive, the first thing you will notice is that there are numerous tags utilized all through the project. The most outstanding ones are:

1. <article>: Defines an article.

2. <aside>: Defines content nearby the principle content.

3. <figure>: Defines related content,used in photographs or code postings.

4. <figcaption>: Defines the little caption for your <figure> component.

5. <header>: Defines a header for the page or section.

6. <footer>: Defines a footer for the page or section.

7. <nav>: Defines a progression of connections utilized for navigation around the site.

8. <section>: Defines a segment of content.

A simple example of HTML5 document may be laid out follows:

HTML5 Basic Introduction<!DOCTYPE html>
<html>
<head>
<title>HTML5 Introduction</title>
</head>
<body>
<header>
<h1>HTML5 Basics</h1>
</header>
<div class="content"> Hubkart </div>
<footer>
</footer>
</body>
</html>

Post a Comment