html for beginners in hindi | html HTML for beginners in Hindi | table tag | Form tag |WEB development



Example  of Table and Form Input type
------------------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<title>Welcom</title>
</head>
<body>
<form>
<table border="2" align="center">
<th>Form</th>
<tr>
<td>Name</td>
<td><input type="text" name=""></td>
</tr>

<tr>
<td>Mobile no</td>
<td><input type="number" name=""></td>
</tr>
<tr>
<td>Email</td>
<td><input type="Email" name=""></td>
</tr>
<tr>
<td>Password</td>
<td><input type="Password" name=""></td>
</tr>

<tr>
<td>M</td>
<td><input type="radio" name="var1"></td>

<tr>
<td>F</td>
<td><input type="radio" name="var1"></td>
</tr>
</tr>
<tr>
<td>Message</td>
<td><input type="textarea"  name=""></td>
</tr>

<tr>
<td>submit</td>
<td><input type="submit" name=""></td>
</tr>
<tr>
<td><input type="checkbox" name=""></td>
</tr>
</table>
</form>

</body>
</html>
------------------------------------------------------------------------------------------

Comments