HTML

 

Tags Used in the Hyperlinks

Tag Description <a> Defines an anchor   You see there is only one tag in the Table i.e. <a> tag, it is called as anchor tag. This tag is used to linkthe documents in the Html and it is quite simple.     The <a> Anchor Tag and its Attributes: <a>Attributes Description href specifies the address or …

Tags Used in the Hyperlinks Read More »

Types of linking In HTML

1) Open a link in the same browser window HTML uses the <a> (anchor) tag to create a link to another document.   An anchor can point to any resource on the Web: an HTML page, an image, a sound file, a movie, etc.   Different attributes of the <a> tag are href, name, target. So …

Types of linking In HTML Read More »

How to Hyperlink an Image

  To hyperlink an image first we have to insert the image on the web page. So question is how to insert the image on the web page. In html the image can be inserted using the <img> tag. <img> tag has the attributes like width, height and src, which specifies the height and width …

How to Hyperlink an Image Read More »

How to Hyperlink an Image

  To hyperlink an image first we have to insert the image on the web page. So question is how to insert the image on the web page. In html the image can be inserted using the <img> tag. <img> tag has the attributes like width, height and src, which specifies the height and width …

How to Hyperlink an Image Read More »

How to make the image as Hyperlink

Format: <a href=”path_of_file” > <img src=”path” width=”number” height=”number”></a>   Example: <a href=”list.html”><img src=”img\logo_in.gif” width=”200″ height=”200″></a>   To make an image as hyperlink just enter the <img> tag between the <a> anchor tag. And it will get Hyperlinked. so now lets do some practical.   Just write/copy this example on any text editor new file and …

How to make the image as Hyperlink Read More »

Attributes in HTML

Attribute Value Description src path of audio file Defines the path of the audio file. loop positive integer Defines the no. of times the file must be played.   So now lets do some practical. Just write/copy this example on any text editor new file and save the file and open in the browser and …

Attributes in HTML Read More »

How to add the audio files to your Webpage

If you want to add the audio file then just replace the name of the video file with the other audio file name.   Example: <img border=”0″ dynsrc=”img\border.wav” start=”fileopen” loop=”0″ width=”134″ height=”138″>   Attribute Value Description dynsrc path_of_movie_file Defines the path of movie file. start fileopen, mouseover Defines the instances on which movie starts playing. …

How to add the audio files to your Webpage Read More »

Introduction of frames in HTML

Frames Will not it be better, if you are able to display the more then one HTML document in the same browser. Yes of course it will be better. So get ready to learn this fascinating idea. It can be done very easily using “Frames” in the HTML.   With frames, you can display more …

Introduction of frames in HTML Read More »

Different Types of Frame In html

    Horizontal Frame The horizontal frames are created in the horizontal pattern on the browser. Horizontal frames divides the browser in the horizontal parts as you see in the figures. And all the frames displaying a different html files in them.     Vertical Frame The vertical frames are created in the vertical pattern …

Different Types of Frame In html Read More »

Frame Tags

Tags Description <frameset> Defines a set of frames <frame> Defines a sub window (a frame) <iframe> Defines an inline sub window (frame)     Tags and its Attributes:   Tags Attribute Value Description <frameset> rows pixels, % part of page Defines the proportion of division of page in horizontal frame. cols pixels, % part of …

Frame Tags Read More »

Examples of Different Frames

Just write/copy this example on any text editor new file and save the file and open in the browser and see how it looks.   Example: This example will display empty frames.   <html> <frameset rows=”20%,50%,30%”> <frame> <frame> <frame> </frameset> <head> <title> Frames</title> </head> </html>     so now lets do some Practical. Just write/copy …

Examples of Different Frames Read More »

Introduction

If you want to display information of some type, like displaying your time table of class, Report Card or want to display information in the form of the tables. Then the Table elements of the HTML is used to display the information in the table form. Now you can do this easily or how easily …

Introduction Read More »

Table Tags

Table Tags   Tag Description <table> Defines a table <th> Defines a table header <tr> Defines a table row <td> Defines a table cell <caption> Defines a table caption <thead> Defines a table head <tbody> Defines a table body     The <table> tags The <table> tag defines a table. Inside a <table> tag you …

Table Tags Read More »

Attributes

Attributes   Tags Attribute Value Description <table> align left,center,right Aligns the table. Deprecated. Use styles instead. bgcolor rgb(x,x,x),#xxxxxx, colorname Specifies the background color of the table. Deprecated. Use styles instead. border pixels (0-n) Specifies the border width. Tip: Set border=”0″ to display tables with no borders! cellpadding pixels, % Specifies the space between the cell …

Attributes Read More »

How to Create Table ?

How to Create Table   Example:   <html> <head> <title>tables</title> </head> <body> <b>Table with border=1 cellspacing=1 cellpading=1 with one empty cell. </b><table border=”1″ cellspacing=”1″> <tr> <th>Heading</th> <th>Another Heading</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td> </td> </tr> </table> <br> <b>Table with border=1 cellspacing=1 cellpading=10 bgcolor=lightyellow</b> …

How to Create Table ? Read More »

Example on the colspan and rowspan

Here you can see what the colspan and rowspan do. Just write/copy this example on any text editor new file and save the file and open in the browser and see how it looks.   Example:   <html> <body> This table has a caption,and a thick border,<h4>Cell that spans two columns:</h4> <table border=”6″> <caption>My Caption</caption> …

Example on the colspan and rowspan Read More »

Introduction

HTML Forms are used to select different kinds of user input.   Forms A form is an area that can contain form elements So simply you will have to irst understand “What is Form”. You must have seen the forms on the internet. Now days there is too much craze of the forms on the …

Introduction Read More »

Scroll to Top