Archive

Archive for the ‘html’ Category

Html Code Table

September 4th, 2009 user Comments off

The simple html code structure for a table is:
<table> main tag
<tr>table row
<td>specific cell, block
—————————————————-
<table border=”3″ cellspacing=”15″>
<tr>
<td>Good</td>
<td>Better</td>
<td>Best</td>
</tr>
<tr>
<td>Bad</td>
<td>Worse</td>
<td>Worst</td>
</tr>
</table>
——————————————————

Good
Better
Best

Bad
Worse
Worst

Categories: html Tags:

No Right Click Html Code

August 28th, 2009 user Comments off

It happend to me and probably you before. You spend a lot of work taking pictures and somebody just sneaks onto your webpage and copies all your images. Well, there are several ways to prevent that. I already once wrote about a wordpress plugin you can use. But today I would like to show you [...]

Html Image Link Code

August 28th, 2009 user Comments off

You ever uploaded pictures that you wanted to link to a different webpage? I’ll show you how simple it is with easy html image link code:

<a href=”http://www.destination.after.click .com/”><img src=”http://www.image.stored.right.now.com/pictures/happy_face2.jpg” width=”xx” height=”xx“/></a>

If you want to use thumbnails with your picture:

<a href=”http://www.same.bigger.picture.com /pictures/happy_face2.jpg” /><img src=”http://www.smaller.picture.shows.before.clicking.com/pictures/happy_face2.jpg” width=”xx” height=”xx“/></a>
Here it is best to have to pictures beforehand. Resize the [...]

Simple Starter Page to launch your newly created webpage …

August 25th, 2009 user Comments off

How do you create a simple starter page to launch your newly set up web page. Or you might have already set up a blog on a sub domain of your web page with a blog building software like wordpress. For example like www.Yourwebpage.com/here  – but you might not have a clue how to start [...]

Redirect to new website …

August 25th, 2009 user Comments off

You ever needed to redirect visitors to your new website? But you didn’t want to just let them click on the new link – you want that they get transfered instantly. I’ll show you the code you need to paste into your old site. Paste this following code between the HEAD tags:
<META HTTP-EQUIV=”refresh” CONTENT=”10; URL=http://www.YOURNEWSITE.com/”> [...]

Insert blank spaces or lines into Html

August 18th, 2009 user Comments off

Sometimes you need to add html comments into the code so your blog displays correctly with pictures.
For a blank space use &nbsp;  If you would like several spaces repeat that piece of code.
For a blank line put <br> tags and </br> closing tags.

Categories: html Tags: