0% found this document useful (0 votes)
3 views

HTML.guidline

guideline html
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

HTML.guidline

guideline html
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

HTML

Employee name:

Skill: .net java python

City:

Nashik // Mumbai// pune

save

html

head

div (for rectangular box)

form method

table

Check box ___ multiple selection

Radio button ___ for single selection

Select –single selection In drop down box

Multiple=multiple// parameter

<html>
<head> </head>
<body>
<form method="post" action="#">
<div><h2>Employee Details</h2> </div>
<table>
<tr>

<td>employee name: </td>


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

<tr>
<td>skill: </td>
<td>java<input type="checkbox" name="java" id="java"/>
.net<input type="checkbox" name="cs" id="cs"/>
python<input type="checkbox" name="py" id="py"/>
</td>
</tr>

<tr>
<td>employee city </td>
<td>
<select id="city" style="width:200px">

<option>select</option>
<option>Nashik</option>
<option>Mumbai</option>
<option>banglore</option>
</select>
</td>
</tr>

<tr>
<td>Language known:</td>
<td>
<select id="Lang" multiple="multiple" style="width:200px" >
<option>Marathi</option>
<option>Hindi</option>
<option>English</option>
<option>French</option>
</select>
</td>
</tr>

<tr>
<td>address: </td>
<td> <textarea id="ad" rows="5" cols="40"></textarea>
</td>
</tr>

<tr>
<td></td>
<td><input type="submit" name="sv" value="save data"/>
<input type="submit" name="up" value="update data"/>
</td>
</tr>

</table>
</form>
</body>
</html>

Login form
Register form

<html>
<head>
<title>Login</title>
</head>
<body>
<h3>user registration form </h3>
<form action="" method="post">
<table>
<tr>
<td>user name: </td>
<td><input type="text" id="name" name="mn"></td>
</tr>
<tr>
<td>password: </td>
<td><input type:"password" id="password" name="ps"></td>
</tr>
<tr>
<td><submit</td>
<td><input type="submit" id="yy" value="login">
<ahref = ""> register</a> //for register linking anchort tag
</td>
</tr>
</table>
</body>
</form>
</html>

You might also like