freeCodeCamp/mock-guide/english/html/tutorials/basic-html/index.md

797 B

title
Basic HTML

Basic HTML

This is a stub. Help our community expand it.

This quick style guide will help ensure your pull request gets accepted.

Structure of a basic HTML file:

<!doctype html>
<html>

  <head>
    <title></title>
  </head>
  
  <body>
  </body>
</html>  

More Information: