start html boilerplate code example

Example 1: html boilerplate

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Title Here</title>
</head>
<body>
  
</body>
</html>

Example 2: html boilerplate

<!DOCTYPE html>
<html lang="en">
   <head>
     
      <meta charset="UTF-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     
      <title>Title</title>
     
   </head>
   <body>
     
      <h1>Hello World</h1>
     
   </body>
</html>

Tags:

Html Example