# Welcome to Codemoji!

I see that it's your first time here. Please consider doing a few lessons first if you are not familiar with Codemoji and in no time you'll be able to come back and master the playground!

This area is called the playground. You can use it to play around with the different tags, building whatever webpage you would like. There are no rules! Simply drag the emojis from the Emoji Box into the text editor on the left and then add text to see what you can create.

As always, press the blue "Run Code" button in the bottom left corner of the screen to run your code, then press the purple "View Code" button that appears to see what you've created!

If you forget your task (to play!) or would like a refresher as to how the playground works, simply click the white triangle in the bottom left corner of the screen and this tip will reappear.

## Code Blocks

### HTML Structure

```html
<html>
    <head>
        <title>Your Title Here</title>
    </head>
    <body>
        <h1>Your Main Heading</h1>
        <p>Your paragraph text.</p>
        <div>Your div section.</div>
        <br>
        <strong>Your strong text.</strong>
        <i>Your italic text.</i>
        <span>Your span text.</span>
        <blockquote>Your quote text.</blockquote>
        <ul>
            <li>Your list item 1</li>
            <li>Your list item 2</li>
        </ul>
        <img src="your_image_source_here" alt="Description" />
        <audio src="your_audio_source_here"></audio>
        <video src="your_video_source_here"></video>
        <table>
            <tr>
                <td>Your table data</td>
            </tr>
        </table>
    </body>
</html>
```

## Tags Overview
1. **HTML** - All HTML documents start with the `<html>` tag.
2. **Head** - The `<head>` contains metadata and `<title>`.
3. **Body** - Content of the HTML document goes here, encapsulated within the `<body>` tag.
4. **Paragraph** - Represents a paragraph with the `<p>` tag.
5. **Div** - Divides content sections using `<div>`.
6. **Headings** - Use `<h1>` to `<h6>` for headings of different importance.
7. **Break** - The `<br>` tag creates line breaks.
8. **Strong** - `<strong>` emphasizes text.
9. **Image** - Add images with `<img>`.
10. **Links** - Use `<a>` for hyperlinks.
11. **Lists** - Ordered `<ol>` or unordered `<ul>` lists.
12. **Blockquote** - Add quotes using the `<blockquote>` tag.
13. **Tables** - Use `<table>`, `<tr>`, `<td>` for structured data.
14. **Audio/Video** - Embed media using `<audio>` and `<video>` tags.
