latest Post

HTML Table

Program :


<html>
<head>
<title> HTML Table </title>
<style>
th {background-color:red;color:white;}
</style>
</head>
<Body>
<table style="width:50%" border="2" align="center">
<tr>
<th>First Name </th>
<th>Last Name </th>
<th>Address</th>
</tr>
<tr>
<td>Mr.AAA</td>
<td>S </td>
<td>Chennai</td>
</tr>
<tr>
<td>Mr.BBB </td>
<td>C</td>
<td>Ooty</td>
</tr>
</table>

</html>

Output :`





About Open Learning Creative

Open Learning Creative
Recommended Posts × +

0 comments:

Post a Comment

PHP Registration form using GET, POST Methods with example

Program : HTML Code <html> <head> <title>Student Info</title> </head> <body><center> ...