درس html تصميم تخطيط وجداول للموقع وضعت الدرس بلغتين ليسهل فهمة لأنه تقريباً صعب الفهم
اللغة الأنجليزية
Creating Site Layout By Using TablesWe’re going to build a website that has a navigation menu along the left hand side. In order to do that, we need a “main” table that has two columns – one reserved for the navigation menu and the other for the content. Note that we’re going to add borders to our table to make it visible, but main tables generally do not have any borders. We’re then going to define the width of our table as “100%” to ensure it fits the screen in all screen resolutions and browser windows. We’re also going to define a width for our navigation menu – it can be both fixed or a percentage depending on your personal taste. We’ll set it to a fixed value of 120 pixels for this particular example.
Let’s write down the HTML code for our “main” table:
<TABLE border=0 cellSpacing=1 cellPadding=10 width="100%" bgColor=#cccccc>
<TR>
<td bgColor=#f9f9f9 align=left>