This HTML cheatsheet was made to fill a need that I had to properly write copy for article marketing. It is a very basic cheatsheet designed for beginners who are confused with HTML. It has helped me alot and I hope it helps you too.
*Please feel free to reprint this and use it to get you started.
BASIC
OPEN = < >
CLOSE = < />
BOLD = b <b>BOLD</b>
ITALICS = i <i>ITALICS</i>
UNDERLINE = u <u>UNDERLINE</u>
PARAGRAPH= p <p>PARAGRAPH</p>
HOW TO CREATE LISTS
ORDERED LIST = ol
UNORDERED LIST = ul
ITEM = li
<ol>
<li>ITEM ONE</li>
<li>ITEM TWO</li>
<li>ITEM THREE</li>
</ol>
WILL CREATE:
1. ITEM ONE
2. ITEM TWO
3. ITEM THREE
<ul>
<li>ITEM ONE</li>
<li>ITEM TWO</li>
<li>ITEM THREE</li>
</ul>
WILL CREATE
- ITEM ONE
- ITEM TWO
- ITEM THREE
TO MAKE A URL/WEBSITE LINKABLE
<a target=”_new” href=”http://agentoffortune.net/” = This is the URL the viewer will be sent to.
>http://agentoffortune.net</a> = This is the URL the viewer clicks on.
TO CREATE AN ANCHOR TEXT
<a target=” _new” href=”http://agentoffortune.net/” = This is the URL the viewer will be sent to.
>DISPLAY TEXT</a> = This is the text in the article the viewer clicks on to be taken to the link. i.e; CLICK HERE.
