Please Subscribe My YouTube Channel

Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Tuesday, November 28, 2023

Rules Attribute in Table




Rules Attribute in Table






<html>
    <head>
<title>Rules Attribute in Table</title>
</head>
<body>
<!--Rules="none / rows / cols /  groups /all"-->
<h1>Rules Attribute</h1>
<table border width="80%"cellpadding="18"rules="cols">
<tr>
<th>Student's Name</th>
<th>Batch Time</th>
<th>Course</th>
</tr>
<tr>
<td>Ram</td>
<td>10Am</td>
<td>10Am</td>
</tr>
</table>
</body>
</html>






Monday, November 27, 2023

    HTML Table with Frame Attribute(Program No 4)


Frame Attribute in Table 

                                     

                 Watch Full Video That Given Below




<html>
    <head>
        <title>Frame Attribute in Table</title>
        <style>
th{color: white; background:brown;}
</style>
</head>
<body>
<!--frame="void / lhs / rhs / box / vsides
 / hsides / above / below / border"-->
<h1>Farme Attribute</h1>
<table border width="80%"cellspacing="15"frame="vsides">
<tr>
<th>Student's Name</th>
<th>Batch Time</th>
<th>Course</th>
</tr>
<tr>
<td>Ram</td>
<td>10Am</td>
<td>10Am</td>
</tr>
</table>
</body>
</html>