Source Code of HTML Forms and Tables
Source Code of HTML Forms and Tables
Class-8
Source Code of HTML(Forms)
<html>
<body>
<form>
password:<input type="password"/><br><br>
<option value="volvo">volvo</option>
</select><br><br>
<button type="Reset">Reset</button>
<button type="submit">submit</button>
</form>
</html>
Source Code of HTML(Tables)
<html>
<body>
<tr>
<th>Rollno</th>
<th>Names</th>
<th>Marks</th>
<th>Grade</th>
</tr>
<tr>
<td>1</td>
<td align="center">AA</td>
<td>20</td>
<td>b </td></tr>
</table>
</body>
</html>