CODING Help!!!!!!!!!!!?
Hi. I need help with coding two-column layouts (reg., wordpress, etc.)! I've been trying for so long to code a layout but can't. Anyone know any great tutorial sites for coding a webpage like : http://www.vanessa-anne.org ??? Thanks!!
Public Comments
- go to draac.com he has about everything there.
- The web page you give as an example is built with simple tables. They are fairly easy to make. The code I've provided below can be copied and pasted into a notepad window and saved as an HTML document. When you do this, you will see the two columns, one left, and one right. Here is the code: <table border="0" cellpadding="0" cellspacing="1" width="100%"> <tr> <td colspan="2" bgcolor="#808080"> <p align="center">This is the header cell</td> </tr> <tr> <td width="49%" bgcolor="#CCCCCC">This is the left column</td> <td width="51%">This is the right column</td> </tr> <tr> <td colspan="2" bgcolor="#808080"> <p align="center">This is the bottom or footer</td> </tr> </table> Happy web building:)
Powered by Yahoo! Answers