Ad Code

Made Easy Dynamic Table Using Simple HTML Code

Advertisements
Dynamic Table Code
<html>
<head>
<title> Dynamic Table </title>
</head>
<body >
<hr size=40 color="blue" width=50%>
<Marquee Bgcolor="violet">Learn Easy HTML and Web Design</marquee>
<table border cellspacing=10 align=center>
<tr><th colspan=4>Student of HTML School</th></tr>
<tr><th rowspan=5>all student are</th></tr>
<tr><th>NAME</th><th>AGE</th><th>CLASS</th></tr>
<tr><td>Pinki Halder</td><td>18</td><td>3rd year</td></tr>
<tr><td>Notobor Kundu</td><td>19</td><td>2nd year</td></tr>
<tr><td>Masud Rahaman</td><td>19</td><td>1st year</td></tr>

</body>
</html>
Output




Table
Output Of Dynamic Table

Download Link
Advertisements