Welcome to HTML Elements & Structure! 🎉

Understanding HTML Elements

HTML elements are the building blocks of web pages. Each element has a start tag, content, and an end tag.

HTML Document Structure

        <!DOCTYPE html>
        <html>
        <head>
            <title>My Web Page</title>
        </head>
        <body>
            <h1>Hello, World!</h1>
            <p>This is a paragraph in HTML.</p>
        </body>
        </html>
    

HTML Elements Quiz 🎯

1. Which tag is used to create a paragraph?

<para>
<p>
<text>

2. Which tag creates the largest heading?

<h6>
<h1>
<h3>

3. How do you insert an image in HTML?

<picture>
<img>
<insert>

4. Which tag is used to create a hyperlink?

<link>
<a>
<href>

5. What is the correct structure for an HTML document?

<html> <body> <head> </body> </html>
<!DOCTYPE html> <html> <head> <title></title> </head> <body> </body> </html>
<html> <title> <body> </title> </body> </html>