Computer Science, asked by Rishu1489, 1 year ago

Write HTML code to display the following table:
Specifications:
i) The title of the webpage is 'Schedule'
ii) The Caption of the Table is Duty Chart.
iii) 8 AM 10 AM 12 AM are Table Headings.
Duty Chart
8 AM 10AM 12AM
KEVIN KHUSBOO AMARJEET


SohamPatil: Hey if you find my answer helpful then please mark it as brainliest!

Answers

Answered by SohamPatil
17

<!DOCTYPE html>

<html>

<head>

          <title>Schedule</title>

</head>


<body>


<table cellpadding="5" ; cellspacing="5" ; border="5">


<caption>Duty Chart</caption>


<tr>

       <th>8 AM</th>

       <th>10 AM</th>

       <th>12 AM</th>

</tr>


<tr>

       <td>Kevin</td>

       <td>Khusboo</td>

       <td>Amarjeet</td>

</tr>


</table>

</body>

</html>

Hope it helps!

If it does then please mark it as brainliest!

Regards,

Soham Patil.

Answered by smrititripaathi
1

Mark as brainliest plzz..

follow me.. gyss

Similar questions