javascript website boilerplate code example

Example 1: html boilerplate

<!-- HTML, CSS, JavaScript w/ jQuery -->
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>title</title>
    <style>
      /* CSS */
    </style>
  </head>
  <body>
  <!-- HTML -->
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
  <script>
    // JavaScript w/ jQuery
  </script>
  </body>
</html>

Example 2: 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>

Tags:

Html Example