0% found this document useful (0 votes)
9 views3 pages

Practical 5

Uploaded by

tanvi rastogi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views3 pages

Practical 5

Uploaded by

tanvi rastogi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

5.

Create an HTML document to display the following table:

<html>

<title>Table</title>

<style>

th,td {border:solid; border-color:blue}

th {background-color:yellow;}

</style>

<body>

<table>

<tr color="yellow">

<th colspan="4" >Seminar</th>

</tr>

<tr color="yellow">

<th rowspan="2">Day</th>

<th colspan="2">Schedule</th>

<th rowspan="2">Topic</th>

</tr>
<tr>

<th>Start Time</th>

<th>End Time</th>

</tr>

<tr>

<td rowspan="2">Monday</td>

<td rowspan="2">8:00AM</td>

<td rowspan="2">5:00PM</td>

<td>Introduction to HTML</td>

</tr>

<tr>

<td>Important Html tag</td>

</tr>

<tr bgcolor="grey">

<td rowspan="3">Tuesday</td>

<td>8:00AM</td>

<td>11:00AM</td>

<td rowspan="2">CSS-1</td>

</tr>

<tr bgcolor="grey">

<td>11:00AM</td>

<td>2:00PM</td>

</tr>

<tr bgcolor="grey">

<td>2:00PM</td>

<td>5:00PM</td>

<td>JavaScript-1</td>

</tr>

<tr>

<td>Wednesday</td>

<td>8:00AM</td>
<td>12Noon</td>

<td>JavaScript-2</td>

</tr>

<tr bgcolor="grey">

<td rowspan="2">Thursday</td>

<td>8:00AM</td>

<td>12Noon</td>

<td>JQuery</td>

</tr>

<tr bgcolor="grey">

<td>1:00PM</td>

<td>3:00PM</td>

<td>Valedictory</td>

</tr>

</table>

</body>

</html>

You might also like