StepByStack Learn

Structure

Define a the main structure of any HTML document

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Title Of web page</title>
  </head>
  <body>
    <!-- Content Of web page -->
  </body>
</html>

Comments

Comments used to prevent execution or describe source code

<!-- Insert Comment Here -->

On this page