HTML Basics - Cheat Sheet

<!DOCTYPE>

  • All HTML documents must start with a document type declaration
  • declaration for HTML5 is:

<html>

  • The HTML document itself begins with

<body>

  • The visible part of the HTML document is between <body> and </body>

<br>

  • For new line

<hr>

  • for line break - Horizontal line

Sample.html

<!DOCTYPE html>
<html>
    <body>
        <h1>My First Heading</h1>
        <p>My first paragraph.</p>
    </body>
</html>


No comments:

Post a Comment

HTML Forms - Input Types - Cheat Sheet

Popular Posts