This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Me And My Respected Teacher Mr Kamal Sheel Mishra

Mr. K.S. Mishra is HOD of Computer Science from SMS Varanasi where I have completed my MCA

Me And My Respected Teacher Mr Udayan Maiti

Mr. Udayan Maiti is a senior .Net Expert and has guided many professionals of multi national Companies(MNC)

Me And My Best Friend Mr Ravinder Goel

Mr. Ravinder Goel is a senior Software Engineer and now he is working Wipro Technology

Friday 25 January 2013

Using Onmouseover and Onmouseout in Java Script



Frist we take one image vivekanand.jpg in smae folder





// using with onmouseover and onmouseout in java script

<html>
<head>
<script language="javascript">


    function f1() 
    {
        document.image1.height = 500;
        document.image1.width = 500;
    }
    function f2() 
    {
        document.image1.height = 50;
        document.image1.width = 50;
    }


</script>
<title>onmouseover and onmouseout</title>
</head>
<body>
<form name="form1">
<img src="vivekanand.jpg" height="50" width="50" name=image1 onmouseover="f1()" onmouseout="f2()">

</form>

</body>
</html>


When mouse on image ................






Tuesday 22 January 2013

Create Form with table in html ( Text Field,Radio Button,Drop Down,Check Box )


Create Form with table in html ( using Text Field,Radio Button,Drop Down,Check Box,Submit Button)

<html>

</head>
//  for  java script  code
</head>

<title>Regitration Page in HTML</title>

<body>
<form method="post" action="nextpage.html"  name="myform">

<table border="10px" width="100%">

<tr><td colspan="3"> <marquee behavior="alternate" ><b> <u> My Regitration Page</u></b> </marquee></td></tr>

//  code for text field in html

<tr><td>Name</td><td><input type="text" id="name"></td><td></td></tr>

//  code for radio button in html

<tr><td>Gender</td><td>
<input type="radio" name="sex" value="male" /> Male
<input type="radio" name="sex" value="female" /> Female</td>
<td></td></tr>
<tr><td>FatherName</td><td><input type="text" id="fathername"></td><td></td></tr>
<tr><td>EmailId</td><td><input type="text" id="emailid"></td><td></td></tr>

//  code for text field (password) in html

<tr><td>Password</td><td><input type="password" id="pass"></td><td></td></tr>
<tr><td>ConfirmPassword</td><td><input type="password" id="cpass"></td><td></td></tr>

//  code for Check Box in html

<tr><td>Qulification</td><td><input type="checkbox" name="qulification" value="High School">High School
<input type="checkbox" name="qulification" value="Intermidiate">Intermidiate
<input type="checkbox" name="qulification" value="Graduation">Graduation
<input type="checkbox" name="qulification" value="Post Graduation">Post Graduation</td><td></td></tr>

//  code for drop down list for four item  in html

<tr><td>Current City</td><td> <select name="city" id="city" width="500px">
        <option>Select</option>
        <option>Delhi</option>
        <option>Noida</option>
        <option>Varanasi</option>
        <option>Ghaziabad</option>
      </select></td><td></td></tr>

//  code for submit button  in html

<tr><td><input type="submit" name="submit" value="submit" onClick="f1()" /></td><td></td><td></td></tr>
</table>
</form>>
</body>
</html>




Sunday 20 January 2013

Validation for Password and Confirm Password in java script


///Validation for Password and Confirm Password in java script


<html>
<head>
<title>Validation for Password and Confirm Password </title>
<script>
    function fun() {
        var a = document.f1.elements.pass1.value;
        var b = document.f1.elements.pass2.value;
        if (a != b) {
            alert("Password Dont match");
        }
        else {
            alert("Password match");
        }
    }
</script>
<body>
<form method="post" action="1.html" name="f1">
<table width="400px" border="5px">

<tr><td>Password:</td><td><input type="password" name="pass1"/></td></tr>
<tr><td>Confirm Password:</td><td><input type="password" name="pass2"/></td></tr>
<tr><td></td><td><input type="submit" name="submit" value="submit" onClick="fun()" /></td><tr>


</table>
</form>

</body>
</html>