Friday, October 17, 2014

Write a HTML program to demonstrate the use of <LINK> tag.

Write a HTML program to demonstrate the use of <LINK> tag. Code : linktag.html <html> <head> <title>link tag</title> </head> <body> <center> <font size ="5" color ="blue">introduction of types <br> <a href ="file:/d:/html/img.html">image </a><br> <a href ="file:/d:/html/heading.html">h1 to h6</a><br> <a href ="file:/d:/html/form.html">form</a><br> <a href ="file:/d:/html/marquee.html">marquee</a><br> <a href ="file:/d:/html/table.html">table</a><br> <a href ="file:/d:/html/ul-ol.html">ul and ol</a><br> </font> </center> </body> </html>

No comments: