• Pictures from my Geology trip to Aliaga, Spain in September 2011.
  • Pictures from my summer holiday to Antigua in July 2009.
  • Report of my school trip to Arizona, USA in March/April 2007. More pictures from the trip are in the gallery.
  • Useful HTML tags
    Tags Description • Meaning • Definition
    <a> ANCHOR tag creates <a href="http://www.quirkyquipu.co.uk">link</a> to other internet location, or file.
    <b> BOLD tag is specifying <b>bold section</b> within the text document.
    <big> BIG tag makes the <big>text larger</big> then the rest of the text.
    <br> Line Break tag is specifying<br>
    a new line
    <center>
    <center>CENTER tags center text, images, etc.</center>
    <p>

    <p>PARAGRAPH tag is specifying a paragraph.</p>

    <p>And this paragraph will be on a different line with spacing between each paragraph.</p>

    <li> LI tag is defining a list item within a list.

    <ul>
    • <li>List item 1</li>
    • <li>List item 2</li>
    • <li>List item 3</li>
    </ul>
    <strong> STRONG tag is specifying <strong>strong section</strong> within the text document.
    <table> TABLE tag is defining a table.

    <table>
      <tr>
        <td>First Cell</td>
        <td>Second Cell</td>
      </tr>
    </table>
    <td> TD tag creates a data cell.

    <table>
      <tr>
        <td>First Data Cell</td>
        <td>Second Data Cell</td>
      </tr>
    </table>
    <th> TH tag creates a header cell (not used in this table but here for completeness).

    <table>
      <tr>
        <th colspan="2">My Shopping List</th>
      </tr>
      <tr>
        <td>Apples</td>
        <td>Pears</td>
      </tr>
    </table>
    <tr> TR tag creates a row in a table.

    <table>
      <tr>
        <td>Data Cell 1</td>
        <td>Data Cell 2</td>
      </tr>
    </table>
    <u> UNDERLINE tag is specifying <u>underlined section</u> within the text document.
    <ul> UL tag is defining an unordered list.

    <ul>
    • <li>List item 1</li>
    • <li>List item 2</li>
    • <li>List item 3</li>
    </ul>
    &lsquo; Left single quote ‘
    &rsquo; Right single quote ’
    &ldquo; Left double quote “
    &rdquo; Right double quote ”
    &quot; Double quotation mark "
    &nbsp; Insert a sp ace (see what I did there)
    &lt; Less-than sign <
    &gt; Greather-than sign >