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 Blocks

HTML Structure

<!DOCTYPE html>
<html>
<head>
    <title>Your Title Here</title>
</head>
<body>

<h1>This is a title.</h1>
    <p>This is a paragraph.</p>
    <blockquote>This is a blockquote.</blockquote>
    <a href="#">This is a link.</a>
    <strong>This is a section of strong text.</strong>

</body>
</html>

List

  1. Smiley Emojis

    -

Tag Descriptions

  • : All HTML documents start and stop with this tag.
  • : Contains meta-information about the document.
  • </strong>: Specifies the title of the document.</li> <li><strong><body></strong>: Contains the visible content of the web page.</li> <li><strong><h1> to <h6></strong>: Header tags that define headings.</li> <li><strong><p></strong>: Defines a paragraph.</li> <li><strong><div></strong>: A generic container for flow content.</li> <li><strong><ul></strong>: An unordered list.</li> <li><strong><li></strong>: A list item.</li> <li><strong><strong></strong>: Defines important text with strong emphasis.</li> <li><strong><img></strong>: Used to embed images.</li> </ul> <h3>Example of a Table</h3> <pre><code class="language-html"><table> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Row 1 Col 1</td> <td>Row 1 Col 2</td> </tr> </table> </code></pre> <h3>Multimedia Examples</h3> <ul> <li><strong><audio></strong>: To add audio, drop in a tag and select the audio file.</li> <li><strong><video></strong>: To add video, use the video tag and select your file.</li> </ul> </section> </article> </main> <footer> <p>Original source: <a href="https://www.codemoji.com/playground.php?id=237">https://www.codemoji.com/playground.php?id=237</a></p> </footer> </body> </html>