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.
HTML Tags Overview
Tag: All HTML documents start and stop with the
<html>tag so drop one in to begin, and to end your document.Tag: You'll find the brains of the operation, at the start, in the
<head>- not seen on the page. You might want to add a title within the<head>.Tag : The<title>tag is important as it names your document.Tag: All of the content will be layered in the
<body>. Go ahead, jam in as many toppings as you can.Tag
: Need a new paragraph? Drop a newspaper in to get a new paragraph.- Tag: A
<div>is a division in the content, separating things in the body.Tag
: The<h1>to<h6>tags are here for headings. The most important ones are the H1.
Tag: This creates a line break between lines of text.Tag: Use the
<strong>tag to emphasize something and say it strongly.Tag: Use
<img>to add an image to your page.: The
<map>tag adds a location in your document.- Tag
<ul>tag is for unordered lists, useful for checklists.- Tag
: Use<li>to create items in a list.Tag: The
<b>tag is for making text bold.Tag: The
<i>tag is used for italicized text.Tag: The
<span>tag is a section in the document.Tag: Use the
<a>tag to create links that connect to various sources, pages, or content.Tag
: Use<blockquote>to add quotes.Tag: The
<table>tag is useful for structuring data in rows and columns.: The
<audio>tag is for adding music.: To add a video to your page, use the
<video>tag.