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>
<head>
<title>Your Title Here</title>
</head>
<body>
<h1>Your Main Heading Here</h1>
<p>Your paragraph content here.</p>
<div>Your division content here.</div>
<br>
<strong>Your strong text here.</strong>
<span>Your span content here.</span>
<img src="https://www.example.com/image.jpg" alt="An example image">
<a href="https://www.example.com">Click here for more.</a>
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
<blockquote>This is a quoted text.</blockquote>
<table>
<tr>
<td>Table data</td>
</tr>
</table>
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
</audio>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>
style.css
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
}
Emoji Examples
- Smiley Emojis
Tags Overview
- HTML - This is the tag. All HTML documents start and stop with this tag.
- HEAD - This is the tag, containing metadata.
- TITLE - This is the
tag, giving order to your document. - BODY - This is the tag, where your content is placed.
- P - This is the
tag for paragraphs.
- DIV - This is the tag, used for division in content.
- BR - This is the
tag, creating breaks in content.- STRONG - This is the tag for emphasis.
- IMG - This is the
tag for images.
- A - This is the tag for links.
- BLOCKQUOTE - This is the
tag for quotations.
- TABLE - This is the
tag for structure.
- AUDIO - This is the
- VIDEO - This is the
Conclusion
Now you have an overview of basic HTML structure and some examples to start playing around in the Codemoji playground!
- BR - This is the