The introduction starts immediately after the title of the article. It's how you start your piece and is just plain text. This article is for staff and volunteers, to help them format articles correctly before publishing. It's recommened you save your original article in a plain text editor. You can incorporate the correct code (which you can copy and paste from this article) in that plain text editor. When you think it's ready you can go to create article in the top left of the scarleteen website (when you have the correct privillages)
Within the text you can emphasize/italicise or bold/strong your text using these bits of html code. <em>Emphasized</em> <i>Italicized</i> <strong>Strong</strong> <b>Bolded</b>
You can also turn text which refers to another article or resource into a link using this code: <a href="http://www.scarleteen.com">text which refers to another article or resource</a>
This is what it looks like when you embed a quote
Use this code to create a quote like that: <blockquote>This is what it looks like when you embed a quote</blockquote>
To create an unordered list (i.e. with bullet points) like this: ...use this code <ul><li>First item</li><li>Second item</li></ul>
To create an ordered list (i.e. with numbers) like this:
  1. First item
  2. Second item
... use this code <ol><li>First item</li><li>Second item</li></ol>

For the for the format we use for most subtitles

... use this code <h3>For the for the format we use for most subtitles</h3>

Use h2 to have this bigger format we use for sections of of bigger articles

h4 for something smaller

h5 for something even smaller
and h6 for something even even smaller

Description Description




An image floating on the right-hand side of an article can be created using <img alt="Description" src="http://www.scarleteen.com/sites/files/scarleteen/left.png" style="float:right; height:130px; width:88px" /> An image floating on the left-hand side of an article can be created using <img alt="Description" src="http://www.scarleteen.com/sites/files/scarleteen/right.png" style="float:left; height:130px; width:88px" />
One of those lines to indicate a break can be created by using this code <hr>
To create a table like this...

Header of the first column Header of a new column (add another <th>'Header'</th> to make another column)
Content of the first cell in this row Content of the second cell in this row
Content of the first cell in this row Content of the second cell in this row
Content of the first cell in this row Content of the second cell in this row

...copy paste this code: <table border="1" cellpadding="3" cellspacing="3"> <thead> <tr> <th>Header of the first column</th> <th>Header of a new column (add another &lt;th&gt;'Header'&lt;/th&gt; to make another column)</th> </tr> </thead> <tbody> <tr> <td>Content of the first cell in this row</td> <td>Content of the second cell in this row</td> </tr> <tr> <td>Content of the first cell in this row</td> <td>Content of the second cell in this row</td> </tr> <tr> <td>Content of the first cell in this row</td> <td>Content of the second cell in this row</td> </tr> </tbody> </table>