∆ HTML - 5 :-
1) HTML - 5 is the fifth major standard of HTML ..
2) HTML-5 started becoming main streme in 2010...
3) HTML-5 has improve the markcup and available for document...
4) It has application programming interface (APR) and document object model (DOM)...
5) HTML - 5 is currently used ,because it support mobile technology...
6) The main difference between in HTML and HTML - 5 are the video and audio are not part of HTML while these integral part of HTML-5 specification ...
@ Basic structure of HTML-5
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>........ </TITLE>
</HEAD>
<BODY>
<HEADER>
<NAV>..........</NAV>
</HEADER>
<SECTION>
<ARTICAL> .......... </ARTICAL>
</SECTION>
<ASIDE> ........ </ASIDE>
<FOOTER> ............. </FOOTER>
</BODY>
</HTML>
# <HEADER> :-
1) The header element specify a header for a document or a section ...
2) The header element should be used for introductory contained ...
3) You have used several header element one document ...
Ex ...
<HEADER>
<H1> I am Student of Manoj bhusari.</H1>
</HEADER>
# <NAV> :-
👉 The NAV element defined a set of nevigation link for relation purpose...
Ex ...
<NAV>
<A href="www.google.com"> Google ! </A>
</NAV>
# <SECTION> :-
👉 The Section element define a section in document such as you can used multiple section in a one document ...
This section are used for discription purpose...
Ex ...
<SECTION>
<P> I am Kshitij Taywade ...</P>
</SECTION>
# <ARTICAL> :-
👉 The Artical element specify independent and self contained discription ...
Ex ...
<ARTICAL>
....... Discription ......
</ARTICAL>
# <FOOTER> :-
1) The Footer element specify a footer documentation ....
2) A footer element should be contain information about its containing element ...
3) Footer are used to discribe discription of documentation such as page invorment , page loading time and server connection are used for footer purpose...
## Thank you 🙏🙏