[Solved] Writing tables in HTML


Does this solve your problem:

<html><body>
    <table width="600" align="Center">
        <tr><td align="center">
                <h1>Janez Novak</h1>
                <i>Univ. dipl. inz. | Univ. dipl. ing.</i>
                <h2>Raziskovalec | Researcher</h2>
        </td></tr>
        <tr><td align="Left">
            <table border="1">
            <tr>
                <td rowspan="3" align="Center" valign="Top"><b>Naslov:</b></td>
                <td>UM FERI</td>
            </tr>
            <tr>
            <td>Smetanova Ulica</td>
            </tr>
            <tr>
                <td>2000 Maribor</td>
            </tr>
            <tr>
                <td align="left"><b>Telefon:</b></td>
                <td>+386 2 220 7000</td>
            </tr>
            <tr>
                <td align="left"><b>Telefaks:</b></td>
                <td>+386 2 220 7272, +386 2 220 7090</td>
            </tr>
            <tr>
                <td align="right" colspan="2"><a href="www.feri.um.si">www.feri.um.si</a></td>
            </tr>
            </table>
        </td></tr>
    </table>
</body></html>

Now the result looks like this:

enter image description here

Note that you also have to remove style="width:20%" because that’s CSS.

6

solved Writing tables in HTML