What is HTML

Overview

<tagname>Content goes here...</tagname>

Examples of some HTML elements:

<h1>My First Heading</h1>
<p>My first Paragraph</p>
Start tag Element content End tag
<h1> My First Heading </h1>
<p> My first paragraph. </p>
<b> My first bold typographical emphasis. </b>
<br> none none
<img> none none

Web Elements

<body>This is content of the body tag!<body>

Web Element Semantics

<body>
    This is the content of body element!
    This element is a parent to the paragraph element.
    The paragraph tag is a child of this element.

    <p>This is the content of the paragraph element!<p>
</body>

Basic Web Elements

DOCTYPE

The <html> tag

The <head>

<title>

<body>