html boilerplates 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 name="viewport" content="width=device-width, initial-scale=1.0" />
        <link rel="stylesheet" href="Index.css" />
        <title>Title</title>
    </head>
    <body>
        <script src="Index.js"></script>
    </body>
</html>

Example 3: html5 boilerplate

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>HTML5 boilerplate – all you really need…</title>
	<link rel="stylesheet" href="css/style.css">
	<!--[if IE]>
		<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
	<![endif]-->
</head>

<body id="home">

	<h1>HTML5 boilerplate</h1>

</body>
</html>

Example 4: html boilerplate

<!doctype html>

<!--language set to English-->
<html lang="en">
  <head>
    <meta charset="utf-8">

  	<title>Title here</title> <!--Title here-->

  	<link rel="stylesheet" href="css/styles.css">
  </head>
  <body>
    <!--your content here-->
  </body>
</html>

Example 5: html boilerplate

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8"> 
 <!--Add meta tag, Google Font cdn, bootstrap cdn here--> 
  </head>
  
  <body>
  <!--text, img, and structure here-->  
  <!-- Javascript & Jquary bootstrap cdn here-->
  </body>
</html>

Tags:

Html Example