# Welcome to the Playground!!

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.

## Coding with HTML

### Basic HTML structure

```html
<html>
  <head>
    <title></title>
  </head>
  <body>
    <h1></h1>
    <p></p>
    <span></span>
    <blockquote></blockquote>
    <strong></strong>
    <i></i>
    <img src="" alt="">
    <a href=""></a>
    <audio></audio>
    <video></video>
    <map></map>
    <br>
    <div></div>
    <ul>
      <li></li>
    </ul>
    <table>
      <tr>
        <td></td>
      </tr>
    </table>
  </body>
</html>
```

### Common HTML Tags

1. **HTML Tag**: All HTML documents start and stop with the `<html>` tag.
2. **Head Tag**: Contains the `<head>` tag where you'll find metadata about your document.
3. **Title Tag**: The `<title>` tag is important for naming your document.
4. **Body Tag**: The `<body>` tag holds the content of your document.
5. **Paragraph Tag**: The `<p>` tag is used for paragraphs.
6. **Div Tag**: The `<div>` tag is a division in the content, separating sections.
7. **Heading Tags**: Use `<h1>` through `<h6>` for headings, with `<h1>` being the most important.
8. **Break Tag**: The `<br>` tag creates a line break.
9. **Strong Tag**: The `<strong>` tag is used for emphasis.
10. **Image Tag**: The `<img>` tag is used to display images.
11. **Link Tag**: The `<a>` tag is used for links.
12. **List Tag**: The `<ul>` and `<li>` tags are used for unordered lists.
13. **Table Tag**: Use `<table>`, `<tr>`, and `<td>` for structured data.
