Friday 24 January 2014

scrolling Tag in html

<html>
<head>
<title> Dragon Scroll </title>
<body bgcolor="pink">
<h1>
<marquee dir="right" > <font color="red" > Dragon warrior will have the dragon Scroll...... !! </font> </marquee>
</h1>
</body>
</html>


Smart Table

<html>
<head>
<title> Table </title>
</head>
<body>
<table border="2">
<tr>
  <th rowspan="2"> S.No </th>
  <th colspan="2"> Name </th>
</tr>
<tr>
  <th> First Name </th>
  <th> Last Name </th>
</tr>
<tr>
 <td> 1 </td>
 <td> TOM </td>
 <td> FARCRY </td>
</tr>
</table>
 </body>
 </html>



Red color link in html

<html>
<head>
<title> Link </title>
</head>
<body bgcolor="blue">
<h1> Exciting
<a href="http://www.wallcg.com" > <Font color="red" size="48"> Wall papers <Font> </a>
</h1>
</body>
</html>



Paragraph tag

<html>
<head>
<title> Sample Paragraph </title>
</head>
<body>
<h1> Internet Protocols </h1>
<p> Protocols are just like guide lines for packet. The Internet Protocol (IP) is the principal communications protocol in the Internet protocol suite for relaying datagrams across network boundaries. Its routing function enables internetworking, and essentially establishes the Internet.
</p>
</body>
</html>


Proper Alingment

<html>
<head>
<title> Proper align </title>
</head>
<body>
<h1> STUDENT DETAIL </h1>
<h5> Name : Tom Farcry </h5>
<h5> Roll NO : 12xyz12 </h5>
<h5> Age : 20 </h5>
<h5> PhoneNo : 1234567890 </h5>
<h5> Address : DownTown street </h5>
</body>
</html>

Nested list ......... ??

<html>
<head>
<title> Nested List </title>
</head>
<body>
<h4>
<ul type="fill round">
 <li> First Year </li>
 <ul type="round">
  <li> Semester I </li>
  <li> Semester II </li>
 </ul>
 <li> Second Year </li>
  <ul type="round">
  <li> Semester III </li>
  <li> Semester IV </li>
  </ul>
 <li> Third Year </li>
  <ul type="round">
   <li> Semester V </li>
   <li> Semester VI </li>
  </ul>
  <li> Fourth year </li>
   <ul type="round">
    <li> Semester VII  </li>
<li> Semester VIII </li>
</ul>
  </ul>
</h4>
 <body>
 </html>


list tag in html

<html>
<head>
<title> Ordered & Unordered List </title>
<body>
<h1>
<ol>
<li> Tom Farcry </li>
<li> Poo </li>
<li> Jacky </li>
<li> Bheem </li>
<li> Moore </li>
<li> Bill Inmann </li>
</ol>
<ul>
<li> Tom Farcry </li>
<li> Poo </li>
<li> Jacky </li>
<li> Bheem </li>
<li> Moore </li>
<li> Bill Inmann </li>
</ul>
</h1>
</body>
</html>



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>