-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (63 loc) · 1.76 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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>
<h1 style=color:aqua;>Table</h1>
</center>
<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" align="center" style=background-color:#00FF00;color:black;><b>XSL Transformatics</b></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>
<br><br><br><br><br>
<center>
<h1><a href="table.html" style=color:aqua;>Timetable</a></h1>
</center>
</body>
</html>