Friday, 24 January 2014

Image in new tab...

when clicking the image it should open in new tab........???

<html>
<head>
<title> Image_NewTab </title>
</head>
<body>
<h1> Make a Click .... </h1>
<a href="http://www.cms2cms.com/wp-content/uploads/2013/10/html-1.jpg" target="_blank">
        <img src="http://www.cms2cms.com/wp-content/uploads/2013/10/html-1.jpg" attributes="#"\>
    </a>
</body>
</html>

to place image at the center of the Web page???

<html>
<head>
<title> Image </title>
</head>
<body>
<center>
<img src="http://www.cms2cms.com/wp-content/uploads/2013/10/html-1.jpg"  alt="HTML">
</center>
</body>
</html>

Frame Tag usage in Html??

/* frame.html*/
<html>
<head>
<title> Frame </title>
</head>

<frameset cols="25%,*,25%">
<frame src="A&V link.html" >
<frame src="abbr.html" >
<frame src="Bg_Red.html">
</frameset>

</html>

/*bg_red.html*/
<html>
<head>
<title> Hello Html...!! </title>
</head>
<body bgcolor=red>
</body>
</html>

/*abbr.html*/
<html>
<head>
<title> abbreviation </title>
</head>
<body>
<h1><abbr title="Internet Protocol and Web technology"> IP/Web </abbr></h1>
</body>
</html>

/*a&v link */
<html>
<head>
<title> A&V link </title>
<body link="green" vlink="violet">
<h1> Exciting
<a href="http://www.wallpaper.com" target="_blank"> Wallpaper </a></h1>
</body>
</html>







Different Attributes of font tag?

<html>
<head>
<title> Font </title>
</head>
<body>
<font face="FoughtKnight Victory" size="24" color="blue" > Hello Html... !! </font>
</body>
</html>



Background Color Changing in Html

<html>
<head>
<title> Hello Html...!! </title>
</head>
<body bgcolor=red>
</body>
</html>





Wednesday, 22 January 2014

Simple program to verify abbr tag???

<html>
<head>
<title> abbreviation </title>
</head>
<body>
<h1><abbr title="Internet Protocol and Web technology"> IP/Web </abbr></h1>
</body>
</html>


A&V link

Simple Program to verify A&V link??

<html>
<head>
<title> A&V link </title>
<body link="green" vlink="violet">
<h1> Exciting
<a href="http://www.wallpaper.com" target="_blank"> Wallpaper </a></h1>
</body>
</html>