Basic HTML
There are many html editors out there but buying the most expensive one is not always necessary.
This is the first one I started with, it is called NoteTab. You can download here.
Below is some basic HTML commands:
< > = open comand </ > = close comand
Example below:
<p> =open paragraph </p> = close paragraph
<b> Test Bold </b> =bold
<u> Test Underline </u> =underline
<i> Test Italics </i> =italics
<ul> Test Bullet List </ul> =unordered list (bullets)
<ol> Test Numbered List </ol> =ordered list (numbered)
<li> Test List </li> =list item
<h1> Test Headline 1 </h1> =headline 1
<h2> Test Headline 2 </h2> =headline 2
<h3> Test Headline 3 </h3> =headline 3
<br> =line break
<hr> =horizontal rule
<hr width=”50%” align=”left”> =horizontal rule going 50% across the page and aligned to the left. You can also align to the right or center.
To insert a table <table> <tr> <td> content here </td> </tr>
</table>
Again you can use the width and align functions in the <table> tag to set the width and alignment of your table.
Eg: <table width=”30%” align=”center”> <tr> <td> content here </td> </tr> </table> Also, remember that what you start with you finish with in reverse,
Example: <p> <b> <u> your content here </u> </b> </P>.
Here are some websites to help you with building your webpages.?To learn more you can check out these sites:
http://www.marketingbeginners.com
http://www.w3schools.com/html/default.asp
Popularity: unranked [?]




Leave a Reply