Please help me with this programming problem. I need to get the html code for the table and form shown in the image.
Answers
Answer:
HTML code:
<html>
<body>
<table border="px">
<caption>Table1</caption>
<tr>
<th>Text</th>
<th>Author</th>
<th>Page</th>
</tr>
<tr>
<td>Information</td>
<td rowspan="2">Mark Stamp</td>
<td>501</td>
</tr>
<tr>
<td>Web Programming</td>
<td>541</td>
</tr>
<tr>
<td colspan="2">Computer Science</td>
<td>541</td>
</tr>
</table>
<div align="center">
<h3>Log in </h3>
Username
<input type="text" > <br><br>
Password <input type="password"> <br>
<input type="checkbox"> Remember Username <br><br>
<a href="#">Forgotten your username or password?</a>
</div>
</body>
</html>
**Please mark this answer as Brainliest answer. Thank you!