Hello,
Here is a basic HTML tutoial, this shall help maximum number of HTML beginners:
1. Simple text
For a simple text, the tag is <text>TEXT HERE</text>
2. Paragraph text
For a paragraph text, the tag is <p>TEXT HERE</p>
3. Linking text
To link a text, the tag is <a href="URL HERE">TEXT HERE</a>
4. Linking in another window
To open the link in another window, the tag is <a href="URL HERE" target="_blank">TEXT HERE</a>
5. Opening link in iframe
To open link in an iframe, the tag is <a href="URL HERE" target="IFRAME NAME HERE">TEXT HERE</a>
6. For bold text
The tag used to make a text bold is <b>TEXT HERE</b>
7. For underlined text
To underline text, the tag used is <u>TEXT HERE</u>
8. For italisized text
For italics, we use <i>TEXT HERE</i>
9. To put text in another link
To break a link, we use <br>
10. To put an image
To put an image, we use <img src="IMAGE URL HERE">
11. To link an image
To link an image, the tag is <a href="URL HERE"><img src="IMAGE URL HERE"></a>
12. To link an image in new window
To link an image in new window, we use <a href="URL HERE" target="_blank"><img src="IMAGE URL HERE"></a>
13. To link an image in iframe
<a href="URL HERE" target="IFRAME NAME HERE"><img src="IMAGE URL HERE"></a>
14. To put a border on image
<img src="URL HERE" border="BORDER NO. HERE">
15, To link an image without a border
<a href="URL HERE"><img src="IMAGE URL HERE" border="0"></a> (Same Window)
<a href="URL HERE" target="_blank"><img src="IMAGE URL HERE" border="0"></a> (New window)
<a href="URL HERE" target="IFRAME NAME HERE"><img src="IMAGE URL HERE" border="0"></a> (In an iframe)
16. To show an transparent background iframe
Ok, this is an important thing, needs to be payed attention at.
On your main page, wherever you want to add iframe, add <iframe src="URL HERE" name="IFRAME NAME HERE" Height="HEIGHT HERE" width="WIDTH HERE" ALLOWTRANSPARENCY=true>
And on each page, add this tag: <body style="background-color: transparent;">
If you still have any doubt, please feel free to ask at admin@jennifer-mysteries.com