ZaZaKi, a web developer Between Manchester UK & Rotterdam NL. © 2015-2024.

HTML5 structure

HTML structure is one of very early steps must be to taken during the design and development of the website, The HTML structure serves the website accessibility, accessibility for search engine, and the HTML structure is most important accessibility for the device to access the website’s function such TAB key and voice operating systems on the website.

for more about the HTML structure visits the page Page must have means to bypass repeated blocks from the https://dequeuniversity.com/

for more about the HTML structure visit the  page Document and website structure from the https://developer.mozilla.org/en-US/

 
<!DOCTYPE html>
<html>
<html lang="en">
<head>
   
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Zazaki computer</title>
   <meta name="description" content="HTML ">
   <meta name="keywords" content="HTML ">
   <meta name="author" content="Sarnas Kadir">

</head>
<body>

   <header> <div>This is the header.</div> </header>

   <nav> 
       <div>This is the navigation.</div> 
   </nav>

   <main>

       <div>This is the main content.</div>

       <section> 
           <div>This is a section.</div>
       </section>

       <article>
           <div>This is an article.</div>
       </article>

       <aside> 
           <div>This is an aside.</div> 
       </aside>

   </main>

   <footer> 
       <div>This is the footer.</div> 
   </footer>

</body>
</html>
 
Categroy:
Front-end , HTML