Computer Science, asked by Anonymous, 1 year ago

What is HTML5 ????? how to use it ????? explain with example 

Answers

Answered by piyali
3
HTML5 has been in the introduction of a number of sectioning element that can be used to mark up your web pages. Using this elements gives more semantic meaning of your pages , allowing computer programs to better understand your content.
The example below uses a <main> element to represent the main content for the page
 <body>
<header>
 <div id="logo">Rocking Stone</div> <nav>...</nav>
 </header>
<main role="main">
 <h1>Guitars</h1>
 <p>The greatest guitars ever built.</p> <article>
 <h2>
Gibson SG</h2>
<p>...</p>
</article>
<article>
 <h2>Fender Telecaster</h2>
<p>...</p>
</article>
 </main>
 </body>



Anonymous: Dear is this a software or used in notepad ????????
piyali: used in a notepad.
AvmnuSng: used in notepad is not the limitation of html5, there are many editors and IDEs for html5
Answered by AvmnuSng
1
HTML5 is a scripting language....

I guess you should read few lines about scripting language..... but basically HTML5 is used for web development works.....

Anonymous: PLz explain some examples i know how to use HTML but nothing about HTML5
Similar questions