What is HTML5 ????? how to use it ????? explain with example
Answers
Answered by
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>
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 ????????
Answered by
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.....
I guess you should read few lines about scripting language..... but basically HTML5 is used for web development works.....
Similar questions