Crus4

logo

HTML Tables in Hindi


Loader Loading…
EAD Logo Taking too long?

Reload Reload document
| Open Open in new tab

Example

<!DOCTYPE html>
<html>
<head>
<title>HTML Tables</title>
</head>
<body>
<h2>Create a simple HTML Table</h2>
<table border=1px;>

<tr>
<th>Name</th>
<th>Email</th>
<th>Address</th>
</tr>

<tr>
<td>Raju</td>
<td>Raju@gmail.com</td>
<td>Haryana</td>
</tr>

<tr>
<td>Priya</td>
<td>priya@gmail.com</td>
<td>Mumbai</td>
</tr>

<tr>
<td>Sajid</td>
<td>saji@gmail.com</td>
<td>Utter Pradesh</td>
</tr>

</table>
</body>

</html>

Watch Video


HTML Tables in Hindi

Leave a Reply

Your email address will not be published. Required fields are marked *