Back to course syllabus

Basic HTML Template


  <!DOCTYPE html>
  <html lang="en">
   <head>
      <title>Title of the document</title>
      <meta charset="utf-8">
      <link rel="stylesheet" href="style.css" />
   </head>
    <body>
      <!-- This is a comment in the code -->
      The content of the document goes here
    </body>
  </html>