imhiya Posted December 20, 2007 Share Posted December 20, 2007 I'm used to using iframes, but ive being told tables are better for buillding a website, with iframes you could define a webpage to that area. how would i do this in a table like i have a 3 by 3 table and i want the middle page to be news.html how would i go about this? Also i am using dreamweaver for the first time. Quote Link to comment Share on other sites More sharing options...
Dane Posted December 20, 2007 Share Posted December 20, 2007 <table width="#" height="#" cellpadding="0" cellspacing="0" border="0" class="classname"> <tr> <td>Content Here</td> </tr> </table> <table width="#" height="#" cellpadding="0" cellspacing="0" border="0" class="classname"> <tr> <td>Content Here</td> <td>Content Here</td> </tr> </table> <table width="#" height="#" cellpadding="0" cellspacing="0" border="0" class="classname"> <tr> <td>Content Here</td> </tr> <tr> <td>Content Here</td> </tr> </table> Along the lines of that my friend. Quote Link to comment Share on other sites More sharing options...
imhiya Posted December 20, 2007 Author Share Posted December 20, 2007 how do i put a webpage or php into one of them then not just writing. Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted December 20, 2007 Share Posted December 20, 2007 tables are terrible for buildin web sites - almost as bad as iframes!!! Go and learn some css layout techniques and leave 1998 behind. Quote Link to comment Share on other sites More sharing options...
boo_lolly Posted December 21, 2007 Share Posted December 21, 2007 tables aren't as good as CSS, but css is much harder to learn than html tables. and for basic stuff, tables do the trick, iFrames however, are always a bad idea. it's just bad design principle. for that matter, tables are too, now that css is used for everything. but for a beginner, you NEED to learn tables. it's very very simple. check out html tutorials online. all of them will cover tables. Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted December 22, 2007 Share Posted December 22, 2007 it'll take you 2-3 days of to get to grips with css layouts - and it will be the best time you'll spend in the world of web building.... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.