#HTML TABLE ISSUE

8 messages · Page 1 of 1 (latest)

stark umbra
#

Hi there

lost mist
#
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <table border="1px">
            <caption>Practice</caption>
            <thead>
                <tr>
                    <th rowspan="3">Day</th>
                    <th colspan="3">Seminar</th>
                </tr>
                <tr>
                    <td colspan="2">Schedule</td>
                    <td rowspan="2">Topic</td>
                </tr>
                <tr>
                    <td>Begin</td>
                    <td>End</td>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td rowspan="2">Monday</td>
                    <td rowspan="2">8.00 a.m</td>
                    <td rowspan="2">5.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>
                </tr>
                <tr>
                    <td>2.00 p.m</td>
                    <td>5.00 p.m</td>
                    <td>XSL Transformation</td>
                </tr>
                <tr>
                    <td>Wednesday</td>
                    <td>8.00 a.m</td>
                    <td>12.00 p.m</td>
                    <td>XSL Formating Objects</td>
                </tr>
            </tbody>
        </table>
</body>
</html>
lost mist
#

this is the code

lost mist
#

hello ?

stark umbra
#

Yeah

stark umbra
lost mist
#

Tuesday’s table in the reference doesn’t look the same as mine. Even though I tried a lot, I couldn’t manage to make it like that.