Sunday, September 8, 2019

Font and Basefont tag of html in a very easy way.

Difference between font and basefont tag in html:- Font tag is a container tag. Basefont tag is empty tag. We can apply font tag in a body tag where we want to do the formatting(for a particular text) but we can write basefont tag anywhere in the body tag and it will applied to the whole text of the body except the font tag style.(it will not applied to the text where we write font tag.) Font tag is container tag so it will have opening as well as closing tag but basefont tag is a empty tag...

Monday, September 2, 2019

html form example for those students who are good in html table.

<html> <head> <title>Form design</title> </head> <body bgcolor="#00ffaa" text="red"> <h1 align="center"><i>Demo Form</i></h1> <form action="table.html" method="post"> <table align="center" border="5px" bordercolor="#ffaadd" cellspacing="10px" cellpadding="12px" width="70%"> <tr> <th colspan="2">FirstName:</th> <td colspan="2"><input type="text" name="t1" placeholder="firstName"></td></tr> <tr> <th...

Html Form example with almost all its tags.

<html> <head> <title>Form design</title> </head> <body bgcolor="yellow" text="red"> <h1 align="center">Demo Form</h1> <form action="table.html" method="post"> <center> <h3>FirstName:<input type="text" name="t1" placeholder="firstName"></h3><br> <h3>LastName:<input type="text" name="t2" placeholder="LastName"></h3><br> <h3>Email:<input type="email" name="t3" placeholder="EmailId"></h3><br> <h3>Password:<input...

Sunday, September 1, 2019

Best example for understanding Rowspan and colspan in html.

<html><head><title>table</title></head><body><table border="5px"><tr><th colspan="8">Marks Details</th></tr><tr><th rowspan="2">Roll no.</th><th rowspan="2">Name</th><th rowspan="2">English</th><th colspan="3">Science</th><th rowspan="2">Math</th><th colspan="2">FIT</th></tr><tr><td>Physics</td><td>chemistry</td><...

Font and Basefont tag of html in a very easy way.

Difference between font and basefont tag in html:- Font tag is a container tag. Basefont tag is empty tag. We can apply font tag in a ...