Writing Content Using HTML

Compose your manuscript by typing into the panel opposite. Use HTML tags to describe the semantic structure of your work.

For example:


<h2>
	This Is A Heading
</h2>
<p>
	This text is in the first paragraph.
</p>
<p>
	This text is contained in a second paragraph all of its own.
</p>

You can see your code transformed into the completed document by clicking on the Preview tab.

If you need some help finding the right HTML tag then click on

Don't include the following tags in your code: <!DOCTYPE>, <html>, <head>, <title>, <body>, <base>, <main> or <meta>. Web Page Editor will insert these automatically.

Improving Formatting using CSS

Change the formatting of your work by writing CSS code.

For example:


h2 {
	background-color: rgb(255, 160, 120);
	font-family: cursive;
	padding: 5pt;
}