| 12
 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
 
 | <!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title></title>
 
    </head>
    <body>
        <table border="3" width="100%" height="100%" cellpadding="0" cellspacing="0">
 
            <tr>
               <!-- Row 1 Cell1 Border -->
               <td  colspan="2" height="20%">
                 Header 
               </td>               
            </tr>            
            <tr>
                <td class="nav" width="20%" height="80%">
                    Barre de Navguation              
                </td>
                <td class="contenu" width="80%" height="80%">
                    <p>le Contenu du site </p>
                </td>
            </tr>
        </table>
        <?php
        // put your code here
        ?>
    </body>
</html> |