What is HTML5?
HTML stands for Hypertext Markup Language. It is the basic language used to create Web Pages for World Wide Web (WWW).
HTML 5 is the fifth and current major version of HTML. Web languages needs upgrades in order to stay current and solve new problems faced by web developers. HTML5 is the latest version of HTML.
If you want good hand on HTML then it's not just to learn some web language, you need to understand how these objectives manipulate the development of the language & make website more better, reliable & portable
New features of HTML5 include:
Nav
The nav element is used to manage all links of website. Nav element replace the use of Order list & unordered list to make navigation bar more better & reliable
<nav>
<a href="test.html">test</a>
<a href="test.html">test</a>
<a href="test.html">test</a>
</nav>
Header
The header element is used to organize all introductry elements of a website by introductry means logo, navigation link & some time search bar
<header>
<img src="logo.png">
<nav>
<a href="test.html">test</a>
<a href="test.html">testlt;/a>
<a href="test.html">test</a>
</nav>
</header>
Section
Section element used to organize webpage content into thematic groups.
<section>
<h1>test</h1>
<form>
...
</form>
</section>
Figure
Figure elements is used to represent website content, such as photos, illustrations, diagrams or code snippets.
<figure>
<img src="...">
</figure>
<figure>
<img src="...">
</figure>
Video
The video element allows you to easily stream video on website.
<video>
<source src="..." type="video/mp4">
</video>
Footer
The footer element is relates to end of website. This is a new element wich make footer section more identical. It can contain copyright information, links to social media and additional site navigation items.
<footer>
<div>
<a href="#"><img src="..."></a>
<a href="#"><img src="..."></a>
<a href="#"><img src="..."></a>
</div>
</footer>