Sunday, December 25, 2011

Merry Christmas!

Remember it does not matter what the present is,
it is the thought that counts.
Wishing you all a safe and prospurous festive season.

Thursday, February 3, 2011

Outline

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

Monday, September 6, 2010

Going Mobile

Ardan’s Blog Talk is going mobile and needs your support please check it out and send a comment. The mobile web comes with a different set of browser problems that are similar but worse than the real web. Cross browser differences are more significant, if you see a problem in your mobile web browser please let me know.

If anyone is interested in developing their blog on the mobile web and would like to discuss how I have done it, feel free to ask question or offer suggestions.

Visit the mobile site via http://themoblog.com from your mobile phone.

Monday, August 2, 2010

Subscript/Superscript

this is superscript Superscript/Subscript this is subscript

This blog is the copyright of Ardansblogtalk©
This is just some of the things that can be done with subscript and superscript.
So how did I get the little © ?
SymbolHTML code
©
©
®
®
@
@
™


Then to have it as superscript or subscript it is

Ardansblogtalk©<sup>&copy;</sup>

or

Ardansblogtalk©<sub>&copy;</sub>

Wednesday, July 7, 2010

Table Zebra Rows

Name: Country: Hobbies:
Ardan Australia bike riding, reading
Peter Australia reading, blogging
John England soccer, boxing
Tracey South Africa soccer, blogging

Code with comments

This can be copied and pasted into the Edit HTML
<table>
<tr>
<th>Name:</th><!-- th:table head -->
<th>Country:</th>
<th>Hobbies:</th>
</tr>
<tr class="bg"><!-- I have given every other row a class so as to style them different-->
<td>Ardan</td>
<td>Australia</td>
<td>bike riding, reading</td>
</tr>
<tr>
<td>Peter</td>
<td>Australia</td>
<td>reading, blogging</td>
</tr>
<tr class="bg">
<td>John</td>
<td>England</td>
<td>soccer, boxing</td>
</tr>
<tr>
<td>Tracey</td>
<td>South Africa</td>
<td>soccer, blogging</td>
</tr>
</table>
<h4>Code with comments</h4>
<style>
table{width:500px;/* width can be changed but limited by page width or working area*/
border:1px solid grey;}/* change #of pixels to what you want, borders can be solid,dashed or dotted, colors can be changed  */
td{border:1px solid grey;
padding: .5em 1em .5em 1em;}
th{border:1px solid grey;
padding: .5em 1em .5em 1em;
background-color: lightgrey;}
.bg{background-color: pink;/* .bg identifies it as the class bg */
color: red}
</style>

Saturday, July 3, 2010

Letter Spacing

Tight Spacing

Loose Spacing

Below is the code used to achieve this, I hope it helps.
<h2 id ="tight">
Tight Spacing</h2>
<h2 id ="loose">
Loose Spacing</h2>

<style>
#tight{letter-spacing:-2px;}
#loose{letter-spacing:10px;}
</style>