Awesome site :)


Click the banner above and vote for me please? You can vote once a day. :)

HTML

Just a bit of html for future reference. I need it occasionally.

Link:
<a href="url">Link text</a>

Image:
<img src="url" alt="some_text"/>

Doc:
< p > Paragraph
< br > new line
< body > Self explanatory < /body >
<hr /> makes a horizontal line
<br /> makes a line break
<small> makes small text </small>

Table:
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>

Ordered List:
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

Un-ordered List:
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>

More Complicated:
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>

Most or all of this was copied from w3schools.com

  • Change Color of Font:
    <font color="COLOR NAME or HEX CODE">TEXT HERE</font>

    Find hex (hexadecimal) codes here


  • Change Font Size:

    <font size="INSERT NUMBER HERE">TEXT HERE</font>

  • Creating links that open a new page

    <a target="new" href="WEB URL HERE">LINK NAME</a>



    Pictures

  • Insert a Picture:

    <img src="INSERT URL" />


  • Insert a picture with a link:
    <a href="INSERT WEBPAGE URL"><img src="INSERT IMAGE URL" /></a>


  • Change image size:

    <img src="IMAGE URL" height="PIXEL NUMBER" width="PIXEL NUMBER" />

    For example, the most commonly used is 640 width, 480 height.