# 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.

## Code Example

```html
<html>
  <head>
    <title>Sample Title</title>
  </head>
  <body>
    <h1>Welcome to Codemoji!</h1>
    <p>This is a paragraph.</p>
    <div>
      <strong>This text is strong.</strong>
      <i>This text is italicized.</i>
      <br>
      <ul>
        <li>First item</li>
        <li>Second item</li>
      </ul>
    </div>
    <blockquote>"This is a quote."</blockquote>
  </body>
</html>
```

### HTML Tags Overview
- `<html>`: This is the tag that starts and ends HTML documents.
- `<head>`: Contains meta-information about the document.
- `<title>`: Sets the title of the document.
- `<body>`: Contains the content of the document.
- `<h1>`: Represents the main heading.
- `<p>`: Defines a paragraph.
- `<div>`: A division or a section.
- `<strong>`: Indicates strong importance.
- `<i>`: Italicizes text.
- `<br>`: Inserts a line break.
- `<ul>`: Creates an unordered list.
- `<li>`: Represents a list item.
- `<blockquote>`: Quotation from another source.

### Additional Media Tags
- `<img>`: Embeds an image.
- `<audio>`: Adds audio content.
- `<video>`: Embeds video content.
- `<table>`: Creates a table structure with rows and columns.
- `<tr>`: Represents a table row.
- `<td>`: Represents a table cell.
