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>
<head>
<title>Your Title</title>
</head>
<body>
<h1>Welcome to Codemoji!</h1>
<p>This is a paragraph.</p>
<div>A division of content.</div>
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
</ul>
<br>
<strong>Bold Text</strong>
<em>Italicized Text</em>
<img src="https://www.codemoji.com/images/camera.png" alt="Image" />
</body>
</html>
Tags Explanation
- : This is the HTML tag. All HTML documents start and stop with it.
- : The brains of the operation at the start of the document.
: Used for giving a name to the document. - : Contains all the content for the webpage.
- : Defines a paragraph.
- : A division in the content.
- : Header tag indicating the main title.
: Creates a line break.- : Used to emphasize text strongly.
- : Used for italicized text.
: Tag for adding images.
- : A list item in ordered or unordered lists.
- : Used to create hyperlinks.
- : For adding audio elements.
- : For adding video elements.