Showing posts with label html. Show all posts
Showing posts with label html. Show all posts

Friday, June 3, 2011

HTML tutorial

Horizontal ruler
<HTML>
<HEAD>
<TITLE> horizontal ruler </TITLE>
</HEAD>
<body>
<hr width=20% align="left"size=80>
<hr width=205 align="right"size=5>
<hr width=20% align="center"size=8>
<hr width=20 size=7 noshade>
<hr width=50 size=50 noshade>
<hr width=100 noshade>
</BODY>
</HTML>
preview.
 

HTML tutorial

Linking
<HTML>
<HEAD>
<TITLE> linking</TITLE>
</HEAD>
<a href="using background image.html">linking tag</a><br>
<a href="www.yahoo.com">www.yahoo.com</a><br>
<a href="using background image.html"><img src="image/photoshop effect.jpg" align=bottom width=100 height=100 alt="phtoshop effect">
</a><br>
send me<a href="mail to:sarvancalm@hotmail.com">Mail</a>
</BODY>
</HTML>