How to fix my HTML so it will work -
hi, writing html code square box need 4 cells , in 4 cells need divide 4 more parts thing it's breaking other parts me:
<html> <head> <title>this page mohan</title> </head> <center> <table> <tr> <td> <div style="width:250px;height:250px;border:1px solid #0000ff;"><br> <div align:"left"="" style="width:80px;height:80px;border:1px solid #0000ff;"></div><br><br> <div align:"right" style="width:80px;height:80px;border:1px solid #0000ff;"></div><br> <div align:"right" style="width:80px;height:80px;border:1px sloid #0000ff;"></div> </div> </td> </tr> </center> </table> </html>
please, me through still learner. in html page , couldn't make it. have been trying more 3 hours.
try this:
<html> <head> <title>this page mohan</title> </head> <body> <table> <tr> <td> <div style="width:250px;height:250px;border:1px solid #0000ff;"> <br> <div align:"left"="" style="width:80px;height:80px;border:1px solid #0000ff;"></div> <br><br> <div align:"right" style="width:80px;height:80px;border:1px solid #0000ff;"></div> <br> <div align:"right" style="width:80px;height:80px;border:1px sloid #0000ff;"></div> </div> </td> </tr> </table> </body> </html>
Comments
Post a Comment