網頁Web-HTML-17-實作練習 Iframe 排版

文、意如

建立一個網站(共5頁)

全都再index.html使用iframe方式顯示


 

首頁:

index.html (內容放置任意)

其他頁面:

1.關於我們

2.影片介紹

3.商品介紹

4.聯絡我們 (兩欄) 

最後把表格框線去掉 <table border="0" >


參考架構:

 

基本架構:

<html>
<head>
 <title>網頁標題</title>
</head>
<body>
<table border="0" align="center" width="80%">
<tr align="center">
<td>
 <a href="iframe3.html">首頁</a>
</td>
<td>
 <a href="pages/about.html" target="main">關於我們</a>
</td>
<td>
 <a href="pages/video.html" target="main">影片介紹</a>
</td>
<td>
 <a href="pages/product.html" target="main">產品介紹</a>
</td>
<td>
 <a href="pages/conn.html" target="main">聯絡我們</a>
</td>
</tr>
<tr>
<td colspan="5">
 <iframe name="main" src="https://www.dotblogs.com.tw/YiruAtStudio" width="100%" height="480">
 您的瀏覽器不支援iframe框架!
 </iframe>
</td>
</tr>
</table>
</body>
</html>

 

 

 

 

 

Yiru@Studio - 關於我 - 意如