HTML5 Introduction Examples




HTML5 Introduction Examples

<!DOCTYPE html>
<html>

   <head>
      <meta charset="utf-8">
      <title>HTML5 Introduction Examples</title>
   </head>
	
   <body>	
   
      <header role="banner">
         <h1>HTML5 Document Structure Example</h1>
         <p>This page should be tried in safari, chrome or Mozila.</p>
      </header>
      
      <footer>
         <p>Created by Tutorials Root</p>
      </footer>
      
   </body>   
</html>

Output