# 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

### index.html
```html
<html>
<head>
<title>Your Title Here</title>
</head>
<body>
<h1>This is a title.</h1>
<p>Welcome to my webpage!</p>
<div>
<ul>
<li>Smiley Emojis
  
  
</li>
</ul>
</div>
</body>
</html>
```

### style.css
```css
.color-1 { color: red; }
.color-2 { color: blue; }
.color-3 { color: green; }
.color-4 { color: orange; }
.color-5 { color: purple; }
.size-1 { font-size: 12px; }
.size-2 { font-size: 22px; }
.size-3 { font-size: 32px; }
```

### Explanation of Tags

- **<html>** tag. All HTML documents start and stop with the `<html>` tag.
- **<head>** tag. The `<head>` contains meta-information about the document.
- **<title>** tag. The `<title>` is what appears in the browser's title bar.
- **<body>** tag. Contains the content of the webpage.
- **<h1>** to **<h6>** tags. Used for headings of different levels.
- **<p>** tag creates a new paragraph.
- **<div>** tag is used for division or sectioning of the content.
- **<ul>** and **<li>** tags create unordered lists.
- **<br>** tag creates a line break.
- **<strong>** tag emphasizes text.
- **<img>** tag inserts images.
- **<a>** tag adds hyperlinks.
- **<blockquote>** tag is used for quoting content.
- **<table>**, **<tr>**, **<td>** tags create tables for organized data.
- **<audio>** and **<video>** tags are used for embedding media.
