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><...

Wednesday, October 24, 2018

How inheritance is related with constructor

...

Saturday, October 13, 2018

Friend Function and Friend class in C++

Friend Function:- A friend function of a class will be the friend of that class. It will not be the member of that class but it has authority to access all the member of that class even they are private or protected. A friend function can be written in any scope of the class like private, protected and public.  A friend function declaration will be in the class preceded by friend keyword and its declaration will be outside.  A friend function is not a member function  (not a...

Nested Class in C++

Nested Class:- If a class declared inside another class is known as nesting of classes. The outer class is known as enclosing class and the inner class is known as nested class. A nested class is a member of outer or enclosing class so all the so it will have same access right as other member function contains.  Inner class object must be preceded the outer class name with scope resolution operator(: :).                       ...

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 ...