HTML codes

Code to Insert Image on HTML

You can easily insert image using that <img> tag. The sample code is shown below.


 



Code to Insert Table on HTML
Sample code

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Table</title>
<style>
table, th, td {
  border:2px solid black;
}
</style>
</head>
<body>
<p>This is Table Sample</p>
<table>
<tr>
<td>Name</td>
<td>Address</td>
<td>Mobile</td>
<td>email</td>
</tr>
<tr>
<td>Hari</td>
<td>Nepal</td>
<td>+977-981112211</td>
<td>hari@gmail.com</td>
</tr>
<tr>
<td>Jack</td>
<td>Austraila</td>
<td>+61-481112211</td>
<td>jack@gmail.com</td>
</tr>
</table>
</body>
</html>

Preview of Sample Table



Post a Comment

0 Comments