Jump to content

How to use tables?


imhiya

Recommended Posts

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.

Link to comment
https://forums.phpfreaks.com/topic/82503-how-to-use-tables/
Share on other sites

<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.

Link to comment
https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-419380
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/82503-how-to-use-tables/#findComment-420835
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.