Skip to content

Commit

Permalink
Table 2
Browse files Browse the repository at this point in the history
  • Loading branch information
codewithtabani committed Mar 4, 2024
0 parents commit 35c2d2c
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body style=background-color:black;color:white;>
<center>
<table border="1" width="1000" height="500">
<tr>
<th rowspan="3" style=background-color:yellow;color:black;>Day</th>
<th colspan="3" style=background-color:white;color:black;>Seminar</th>
</tr>

<tr>
<th colspan="2" style=background-color:#DE3163;>Schedule</th>
<th rowspan="2" style=background-color:#40E0D0;color:black;>Topic</th>
</tr>

<tr>
<th>Begin</th>
<th>End</th>
</tr>

<tr>
<td rowspan="2">Monday</td>
<td rowspan="2">8:00 a.m</td>
<td rowspan="2">3:00 p.m</td>
<td>Introduction to XML</td>
</tr>

<tr>
<td>Validity: DTD and Relax NG</td>
</tr>

<tr>
<td rowspan="3">Tuesday</td>
<td>8:00 a.m</td>
<td>11:00 a.m</td>
<td>XPath</td>
</tr>
<tr>
<td>11:00 a.m</td>
<td>2:00 p.m</td>
<td rowspan="2">XSL Transformatics</td>
</tr>

<tr>
<td>2:00 p.m</td>
<td>5:00 a.m</td>
</tr>

<tr>
<td>Wednesday</td>
<td>8:00 a.m</td>
<td>12:00 p.m</td>
<td>XSL Formatting Objects</td>
</tr>
</table>
</center>
</body>
</html>

0 comments on commit 35c2d2c

Please sign in to comment.