# Welcome to Codemoji 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.

## HTML Tags Overview

### HTML
All HTML documents start and stop with the <html> tag, so drop one in to begin, and to end your document.

### Head
You'll find the brains of the operation, at the start, in the <head> tag - not seen on the page. You might want to add a <title> within the <head>.

### Title
Turtles love **titles**. They like to put order to things and give them a name.

### Body
Lots of things get layered to make a perfect page within the <body> tag. Go ahead, jam in as many toppings as you can.

### Paragraph
Need a new <p> paragraph? Newspapers are filled with them. Drop a paragraph in to get a new one.

### Division
Just like buses that have to come to a complete stop before starting up again, a <div> is a division in the content, separating things in the <body>.

### Header
Just like swirls on a soft serve ice cream cone, **H1** to **H6** tags are here. The most important ones are the **H1**, like the biggest swirl at the bottom, and the least important ones **H6**, like the smallest swirl at the top.

### Break
The <br> tag creates separation and break between likes of text, or friends.

### Strong
Sometimes you need to emphasize something and say it strongly. Add a little muscle, like this flexed bicep with the <strong> tag.

### Image
If you need to add an **image** to your page, just use an <img> and select the picture you'd like.

### Map
Add a **map** to your document by dropping this map in and selecting a country.

### Unordered List
Some lists don't have any order, like a checklist. Drop in the <ul> tag when you want a quick list that's not ordered.

### List Item
Add a list item to your page using the <li> tag and see the magic.

### Blockquote
Most good books are filled with **quotes**. Anytime you want to add a **blockquote**, just open one.

### Table
Structure makes things easier to understand sometimes. Add a **table** to make rows and columns when you need to organize information.

### Audio
Life is always better with some music. Add some **audio** to your page with the <audio> tag.

### Video
Who can resist eating popcorn when you go to the movies or watch a video? To add a video to your page, use the <video> tag.
