Saturday, 14 February 2015

HTML code for user profile page

program:



<html>
<head>
<title>User profile</title>
</head>
<body bgcolor="#abcdef">
<h3 align="center">User profile</h3>
<form name="profile-form" method="post">
NAME
<input type="text" name="uname" value="ganesh venkata" size="30" maxlength="20"><br>
PASSWORD
<input type="password" name="pwd" value="******" size="15"<br>
EMAIL
<input type="text" name="email" value="ganeshmuppallasv@gmail.com" size="20"<br>
PHONE NUMBER
<input type="text" name="phno" value="1234567890" size="15" maxlength="10"><br>
<pre>
GENDER
male<input type="radio" name="gender" value="male" checked>
female<input type="radio" name="gender" value="female">
</pre>
<br>
DATE OF BIRTH &nbsp;&nbsp;

<select name="day">
<option>day</option>
<option selected>1</option>
<option>2</option>
<option>31</option>
</select> 
&nbsp;
<select name="month">
<option>month</option>
<option>jan</option>
<option selected>feb</option>
<option>dec</option>
</select> 
  &nbsp;
<select name="year">
<option>year</option>
<option>1990</option>
<option>1991</option>
<option selected>2015</option>
</select>
<br>
<br>
<pre>
LANGUAGES KNOWN
ENGLISH <input type="checkbox" name="eng" ckecked>
TELUGU <input type="checkbox" name="tel" ckecked>
HINDI <input type="checkbox" name="hin" ckecked>
</pre>
ADDRESS<br>
<textarea name="address" rows="3" cols="30">
d.no.12/412,village,mandal,dist,pincode
</textarea>
<br>
<br>
<input type="button" name="edit" value="edit">
<input type="button" name="done" value="done">
</form>
</body>
</html>

create your own website click here....

more c and java programs click here...



 
 
 

No comments:

Post a Comment