Get started with HTML5 Basic starter template

wp nav menu1

HTML5 Starter Template

This is the structure of HTML5 document.

<!doctype html>
<html lang="en">
  
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
	
    <title>Start HTML Template</title>
	
  </head>
  
  <body>
    <h1>This is my first heading</h1>
  </body>
  
</html>

HTML5 doctype

<!doctype html>
<html lang="en">
  ...
</html>

Responsive meta tag

<meta name="viewport" content="width=device-width, initial-scale=1">

Leave a Reply