เว็บไซต์มักจะแสดงเนื้อหาในคอลัมน์ต่างๆ (like a magazine or newspaper)
แกลลอรี่ซิตี้
ปารีส
โตเกียว
กรุงลอนดอน
ลอนดอนเป็นเมืองหลวงของประเทศอังกฤษ มันเป็นเมืองที่มีประชากรมากที่สุดในสหราชอาณาจักรมีพื้นที่เมืองหลวงของกว่า 13 ล้านคนอาศัยอยู่
ยืนอยู่บนแม่น้ำเทมส์ในกรุงลอนดอนได้รับการตั้งถิ่นฐานที่สำคัญสำหรับสองพันปีประวัติศาสตร์จะกลับไปที่ก่อตั้งโดยชาวโรมันที่ตั้งชื่อมัน Londinium
HTML เค้าโครงใช้ <div> องค์ประกอบ
<div> องค์ประกอบที่มักจะถูกนำมาใช้เป็นเครื่องมือในการจัดวางเพราะมันสามารถถูกวางตำแหน่งด้วย CSS
ตัวอย่างนี้ใช้สี่ <div> องค์ประกอบในการสร้างรูปแบบคอลัมน์หลาย
ตัวอย่าง
<body>
<div id="header">
<h1>City Gallery</h1>
</div>
<div id="nav">
London<br>
Paris<br>
Tokyo
</div>
<div id="section">
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.</p>
</div>
<div id="footer">
Copyright © w3ii.com
</div>
</body>
ลองตัวเอง» ซีเอสเอ:
<style>
#header {
background-color:black;
color:white;
text-align:center;
padding:5px;
}
#nav {
line-height:30px;
background-color:#eeeeee;
height:300px;
width:100px;
float:left;
padding:5px;
}
#section {
width:350px;
float:left;
padding:10px;
}
#footer {
background-color:black;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
เค้าโครงเว็บไซต์โดยใช้ HTML5
HTML5 มีองค์ประกอบความหมายใหม่ที่กำหนดส่วนต่าง ๆ ของหน้าเว็บ:
|
ตัวอย่างนี้ใช้ <header> , <nav> , <section> และ <footer> เพื่อสร้างรูปแบบคอลัมน์หลาย
ตัวอย่าง
<body>
<header>
<h1>City Gallery</h1>
</header>
<nav>
London<br>
Paris<br>
Tokyo
</nav>
<section>
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.</p>
</section>
<footer>
Copyright © w3ii.com
</footer>
</body>
ลองตัวเอง» ซีเอสเอ:
<style>
header {
background-color:black;
color:white;
text-align:center;
padding:5px;
}
nav {
line-height:30px;
background-color:#eeeeee;
height:300px;
width:100px;
float:left;
padding:5px;
}
section {
width:350px;
float:left;
padding:10px;
}
footer {
background-color:black;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
HTML เค้าโครงใช้ตาราง
<table> องค์ประกอบที่ไม่ได้ถูกออกแบบมาเพื่อเป็นเครื่องมือในการจัดวาง
วัตถุประสงค์ของ <table> องค์ประกอบคือการแสดงข้อมูลแบบตาราง
เค้าโครงสามารถทำได้โดยใช้ <table> องค์ประกอบเพราะองค์ประกอบของตารางจะเรียกขานด้วย CSS:
ตัวอย่าง
<body>
<table class="lamp">
<tr>
<th>
<img src="../images/lamp.jpg" alt="Note" style="height:32px;width:32px">
</th>
<td>
The table element was not designed to be a layout tool.
</td>
</tr>
</table>
</body>
ลองตัวเอง» ซีเอสเอ:
<style>
table.lamp {
width:100%;
border:1px solid #d4d4d4;
}
table.lamp th, td {
padding:10px;
}
table.lamp th {
width:40px;
}
</style>
คำเตือน: การสร้างรูปแบบที่มีตารางไม่ผิด แต่ก็ไม่แนะนำ! หลีกเลี่ยงตารางสำหรับการสร้างรูปแบบ