Code Snippet for Web Dev.


HTML

The following code is a simple template for an HTML page. It defines the global structure, sets the page title, keywords and descriptions, and include a CSS stylesheet.

<html>
  <head>
    <title>Your Title</title>
    <meta name="Description" content="Your Description" />
    <meta name="Keywords" CONTENT="Keyword1, keyword2" />
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <link rel="stylesheet" type="text/css" href="styles.css" />
  </head>

  <body>

  </body>

</html>

Leave a Reply

Your email address will not be published. Required fields are marked *