Upload
Download free for 30 days
Login
Submit search
Html Layouts
0 likes
278 views
AI-enhanced description
Biswadip Goswami
该文档讨论了使用 HTML 表格实现网页高级布局的方法。文档展示了一个复杂的嵌套表格示例,其中包含头部、左侧菜单、主内容和页脚。总体上,表格被广泛用于网页设计中,以便分隔和组织页面的不同部分。
Technology
Design
Read more
1 of 5
1
2
3
4
5
More Related Content
PPT
10x10
november81
DOCX
Html1
montserrat aparicio
PPT
第一个课程2
divinejakiro
PPT
第一个课程
divinejakiro
PPTX
Web Rebuild
Jeffrey Liu
PPT
Xhtml
Biswadip Goswami
PPT
Forms
Biswadip Goswami
PDF
Social Marketing - The Party your are not invited to (Hebrew)
Hanoch Rabinovitz
10x10
november81
Html1
montserrat aparicio
第一个课程2
divinejakiro
第一个课程
divinejakiro
Web Rebuild
Jeffrey Liu
Xhtml
Biswadip Goswami
Forms
Biswadip Goswami
Social Marketing - The Party your are not invited to (Hebrew)
Hanoch Rabinovitz
Viewers also liked
(17)
PPT
Random GSE Presentation
Biswadip Goswami
PPT
2008 Bridging The Gulf Presentation
Karen Delvin
PPT
Nano Branding Sep09
Hanoch Rabinovitz
PPT
Three tier Architecture of ASP_Net
Biswadip Goswami
PPT
Span and Div tags in HTML
Biswadip Goswami
PPTX
TSHOOT Solution for CISCO DEMO
Biswadip Goswami
PPTX
Windows Vista Tour
Biswadip Goswami
PPT
Your First ASP_Net project part 1
Biswadip Goswami
PPT
Visual Studio Toolbox Unleashed
Biswadip Goswami
PPT
Your First ASP_Net Project Part - 2
Biswadip Goswami
PPT
ASP_NET Features
Biswadip Goswami
PPTX
Exercise for weight loss
Angelasteel
PPT
PowerPoint: How to design it, How to use it
BondSolon
PPTX
Energian pientuotannon yhteistyö raportti 2013 public
Sitra / Ekologinen kestävyys
PDF
Fierce Membership: 7 Ways to Keep Your Best Members From Leaving
KiKi L'Italien
PDF
Chuyende maytinhbotui-uclnbcnn
garung1625
PPTX
ֆոսֆոր
harutyunyan--erik
Random GSE Presentation
Biswadip Goswami
2008 Bridging The Gulf Presentation
Karen Delvin
Nano Branding Sep09
Hanoch Rabinovitz
Three tier Architecture of ASP_Net
Biswadip Goswami
Span and Div tags in HTML
Biswadip Goswami
TSHOOT Solution for CISCO DEMO
Biswadip Goswami
Windows Vista Tour
Biswadip Goswami
Your First ASP_Net project part 1
Biswadip Goswami
Visual Studio Toolbox Unleashed
Biswadip Goswami
Your First ASP_Net Project Part - 2
Biswadip Goswami
ASP_NET Features
Biswadip Goswami
Exercise for weight loss
Angelasteel
PowerPoint: How to design it, How to use it
BondSolon
Energian pientuotannon yhteistyö raportti 2013 public
Sitra / Ekologinen kestävyys
Fierce Membership: 7 Ways to Keep Your Best Members From Leaving
KiKi L'Italien
Chuyende maytinhbotui-uclnbcnn
garung1625
ֆոսֆոր
harutyunyan--erik
Html Layouts
1.
HTML Layouts
2.
Tables have been
a popular method for achieving advanced layouts in HTML. Generally, this involves putting the whole web page inside a big table. This table has a different column or row for each main section.
3.
<table id="shell" bgcolor="black"
border="1" heigh="200" width="300"> <tr><td> <table id="inner" bgcolor="white" heigh="100" width="100"> <tr><td>Tables inside tables!</td></tr> </table> </td></tr></table>
4.
<table width="400px" border="0">
<tr> <td colspan="2" style="background-color:yellow;"> Header </td> </tr> <tr> <td style="background-color:orange;width:100px;text-align:top;"> Left menu<br /> Item 1<br /> Item 2<br /> Item 3... </td> <td style="background-color:#eeeeee;height:200px;width:300px;text-align:top;"> Main body </td> </tr> <tr> <td colspan="2" style="background-color:yellow;"> Footer </td> </tr> </table>
5.
<table id="shell" title="Shell"
height="250" width="400" border="0" bgcolor="black" cellspacing="1" cellpadding="0"> <tr height="50"><td bgcolor="white"> <table title="banner" id="banner"> <tr><td>Banner goes here</td></tr> </table> </td></tr> <tr height="25"><td bgcolor="white"> <table title="Navigation" id="navigation"> <tr><td>Links!</td> <td>Links!</td> <td>Links!</td></tr> </table> </td></tr> <tr><td bgcolor="white"> <table title="Content" id="content"> <tr><td>Content goes here</td></tr> </table> </td></tr></table>