3.cell by cell

<!DOCTYPE html>
<html>
	<head>
		<link type="text/css" rel="stylesheet" href="stylesheet.css" />
		<title>My Photo Page</title>
	</head>
	<body>
	        <table>
	                <tbody>
	                        <tr>
	
	                        </tr>
	                </tbody>
	        </table>
            <table>
                    <tbody>
                        <tr>
                            
                        </tr>
                    </tbody>
            </table>
            <table>
                    <tbody>
                        <tr>
                        
                        </tr>
                    <tbody>
            </table>
    
    
    
    
    
    
    </body>
</html>

table is not showing up
help

You seem to have 3 tables (you should have one with 3 rows):

<table>
  <tbody>
    <tr></tr>
    <tr></tr>
    <tr></tr>
  </tbody>
</table>

in each row should be 3 cells (<td></td>)

	</head>
	<body>

    <table>
  <tbody>
    <tr><td></td></tr>
    <tr><td></td></tr>
    <tr><td></td></tr>
  </tbody>
</table>
    
    
    
    </body>
</html>

Is it supposed to be like this because it doesnt work :pensive:

no, you need 3 cells in each row:

<tr><td></td><td></td><td></td></tr>
1 Like

Thanks so much it worked