Header Ads Widget

Example-1: Write HTML code for creating the following table on the web page.


Published from Blogger Prime Android App

Solution:
<html>
<body>
<table border="1">
<Caption>Horizontal headers</Caption>
<tr>
<th>Name</th>
<th>Mobile</th>
<th>Email</th>
</tr>
<tr>
<td>Mizan</td>
<td>01724351470</td>
<td>mizanjust@gmail.com</td> 
</tr>
<tr>
<td>Amir</td>
<td>01918038095</td>
<td>amir@gmail.com</td> 
</tr>
</table>
</body> 
</html>

Post a Comment

0 Comments