instead of applying align to different data, we can directly apply to row.
------------------------------------------------------------------------------
<html>			<!--called root tag-->
	<head>		<!--used for meta tag-->
		<title><!-- it is for title tag-->
			understanding table tag with rowspan
		</title>
	</head>
	<body><!-- is container-->
		<!--following tag is used as heading-->
		<h1>we are going to creat table</h1>
		<!-- we are going to create table-->
		<table border="1" width="100%" bordercolor="green">
			<tr>
				<th>id</th>
				<th>name</th>
				<th>grade</th>
			</tr>
			<!--instead of using align separately with td,
				simply we can use with tr tag.
				it applies to all cell of that row-->
			<tr align="center">
				<td>001</td>
				<td>Rajan</td>
				<td>10</td>
			</tr>
		</table>
	</body>
</html>

No comments:
Post a Comment