Blogger Information
Blog 18
fans 0
comment 0
visits 9656
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第4章 3.20_内联框架与实战-作业
唐朝的博客
Original
469 people have browsed it


实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>PHP在线商需管理系统</title>
</head>
<body>
	<!-- 先定义三行表格 -->
	<table cellspacing="0" border="1" cellpadding="5" align="center" width="960">
		<!-- head 部分 -->
		<tr bgcolor="#dddfff">
			<td colspan="2">
				<iframe src="head.html" name="head" frameborder="0" align="center" width="100%" height="80" scrolling="no" ></iframe>
				 <!-- 
				 iframe src="head.html" ...定义内联页面
				 name 规定 <iframe> 的名称
				 scrolling 规定是否在 <iframe> 中显示滚动条 
				 -->
			</td>
		</tr>

        <!-- middle 部分 -->
        <!-- left -->
	   <tr>
			<td>
				<iframe src="left.html" name="left" frameborder="0" height="500" width="140" scrolling="no" ></iframe>
			</td>
			<td>
				<iframe src="main.html" height="500" width="800" frameborder="0" scrolling="0" align="center" align="left" name="main"></iframe>
			</td>
		</tr>
		<!-- foot 部分 -->
		<tr>
			<td colspan="2" align="center">
				<iframe src="foot.html" name="foot" frameborder="0" scrolling="no" height="50"></iframe>
			</td>
		</tr>


	</table>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:作业已检查! 手写代码未提交!请及时提交!
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!