> April 2013 ~ Online tutorial

HTML tag

tag nameDefinitionSyntax <a> An anchor text which it used to create hyperlinks in HTML. <a href='enter the website name'>Name of site</a> <b>Which is used to blod the text in HTML.<b>Enter the header name</b> <ul> Un ordered list which is list the item in HTML.list is nothing but collection of data....

registration form in php

Registration form: This is registration form in which data are entered by the user then it is goes to database for storing data.In this registration form we create four field and send data using form tag. <html> <body> <form name="form1" action="signup2.php" method="post"> Name<input type='text' name='name'> Email id<input...

send emails using php

Registration form We are create registration form which is important in data storing when the entered value in field the data are redirect value to corresponds method by using form tag.Now they store data in Mysql database for furthur processing on the data. <html> <body> <div align='left'> <table border='1'> <form name='form1'...

HTML list

HTML list List is nothing but the collection of items or elements.There are two type of list are ordered list,unordered list UnOrdered List: UnOrdered List is used for simply using listing the items but if we want the items in the sequence then ordered lists are used. HTML Unordered List Example <html> <body> <b>Fruit List</b> <ul...

HTML audio

Audio using html script we can play the audio files.The simplest way to play the audio use the hyperlinks. Syntax: <a href="location of file'>name of the audio</a> Syntax <html> <head> <title> HTML checkbox </title> </head> <body> <form name='form1'> <a href="chimes.wav'>Click the...

HTML spacing

Cellspaing Cellspacing is allows create distance from each cell can be increased. Example <html> <head> <title> HTML cellspacing </title> </head> <body> <table border="1" cellspacing="20"> <tr> <td>one</td> <td>second</td> </tr> <tr> <td>Three</td> <td>four</td> </tr> </table></body>  </html> ...

HTML cellpadding

Cellpadding Cellpadding is allows to have some space between of each cell and it is borders(or inner edges) Example <html> <head> <title> HTML cellpadding </title> </head> <body> <table border="1" cellpadding="8"> <tr> <td>one</td> <td>second</td> </tr> <tr> <...

HTML checkbox

Check Box It is simplest component which is used particularly whemn we used to make selection of serveral options. Syntx <input type='checkbox' name='check' value='value of checkbox'> Example <html> <head> <title> HTML checkbox </title> </head> <body> <form name='form1'> <input type='checkbox'...

HTML textarea

Text Area Text field is a form component which allows us to enter the single line text,what if we want to have multiple line text?Then you must use the text area components. Syntx &lttextarea cols='20' rows='20' name='myname'> Example <html> <head> <title> HTML Textarea </title> </head> <body> <form...

HTML button

Button There are two buttons that can be created in HTML.one is called submit button.and other is reset button. parameters of submit button name: denotes the name of the submit the button. value: It is writing some text on the text on button. align: specifies the alignment of the buttons. Example <html> <head> <title> HTML...

HTML text

HTML text Text is typically required to place one line text.for example if you want to enter name then it is always preferred to have Text field on the form.The text field can be set using <input type='text' size='size of text' value=""> Some other parameters can be name : indicates the name of text field Max length: That allow us to enter...

HTML forms

HTML forms Form is a typical layout on the webpage by which a user can interact with the web page. <form> tag is used to has an attribute action which gets executed when user clicks the button on the form. syntax Example <html> <head> <title> HTML forms </title> </head> <body> <form name='form1'...

HTML table

HTML table tags The table is a matrix of rows and columns and one area formed due to interaction of a row and a column is called cell To create a table on the web page the table beginning tag is <table>and </table>tag it is used to ending the tag. <html> <head> <title> HTML Table </title> </head> <body> <table...

HTML frameset

HTML frames HTML frames allow us to present document in multiple views.Using the multiple view we can keep certain information visible and at the same time other views are scrolled or replaced. <frameset cols="150,*"> This allow us to divide the two columns.(i.e vertical frames).One are occupying the size of 150 pixels and the other occupies...

HTML HyperLinks

HTML Hyperlinks              There is a common practice the specify the the web link in the webpage.The Link acts as a pointer to some web or some resource.Use the hyper links in the webpage allow page to link logically with other page.           We can use the hyperlinks by using a tag...

HTML Alignment

Text Alignment We can align the text at left,right,center using <div> tags. syntax <div align='left/center/right'> Example <html> <head> <title> HTML Alignment </title> </head> <body> <div align='left'>This is left align</div> <div align='right'>This is right align</div> <div...

HTML font

Font in html We can set the font,size and color of the text in the webpage.The tag <basefont>is the set the font. Syntax <basefont face=font_name> Example <html> <head> <title> Html font </title> </head> <body> <basefont face='arial' size='20'> Today is greeny day<br/> Today is graceful...

HTML formatting

Formatting the text Following are some commonly used tags to format the text TagMeaning <p>This tag is should be put at the every paragraph <br>This is tag causes the single line breaks.Generally it is kept at the end of every line <pre>This tag is used to perserve the white spaces and lines the text <div>This is tag...

html header

Displaying Header we are using header tags which helps to display the text as some header.The header tag is used by h1,h2,h3,h4,h5,h6 Example <html> <head> <title> HTML header </title> </head> <body> <h1>This is first header</h1> <h2>This is second header</h2> <h3>This is third header</h3> <h4>This...

HTML Syntax

HTML syntax An HTML document consists of three parts <html> <head>section <body>section <html> <head> <title> ------- </title> </head> <body> -------- </body> </html>...