Sunday, October 4, 2015

HTML5 Tutorial For Beginners 11 # HTML Tables

5:35 AM











<!DOCTYPE HTML>
<html>
<head>
<title>My HTML</title>
<style type="text/css">
table,th,td {
border: 1px solid black;
text-align: left;
}
thead {
background-color: red;
}
tbody {
background-color: blue;
}
tfoot {
background-color: yellow;
}
</style>
</head>
<table style="width: 100%">
<caption> My Name Table</caption>
<thead>
<tr>
<th>Name</th>
<th colspan="2">Marks</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jack</td>
<td>Jackson</td>
<td>90</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Tom</td>
<td>Tomson</td>
<td>80</td>
</tr>
</tfoot>
</table>
</body>
</html>






OUTPUT:

My Name Table
NameMarks
JackJackson90
TomTomson80













Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top