python/Day21-30/code/new/web1901/example_of_iframe.html
2024-12-04 00:04:56 +08:00

32 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>内部窗口</title>
</head>
<body>
<!-- 行级标签(元素) / 块级标签(元素)-->
<!-- inline element / block element -->
<!-- 块级h1-h6 / p / div / ul / ol / dl / table / form / hr -->
<!-- 行块级(内联块级元素):可以像块级元素一样指定宽度和高度,但是不会独占整行 -->
<!-- 行级a / img / iframe / button / span / input / textarea / select / br -->
<!-- internal frame内部窗口-->
<img title="商品图片" src="images/a1.jpg" alt="">
<img src="images/a2.jpg" alt="">
<iframe src="http://map.baidu.com" width="400" height="400" frameborder="0"></iframe>
<iframe src="http://www.jd.com" width="400" height="400" frameborder="0"></iframe>
<p>1</p>
<p>2</p>
<p>3</p>
<div>1</div>
<div>2</div>
<div>3</div>
<span>1</span>
<span>2</span>
<span>3</span>
<button>确定</button>
<button>取消</button>
<a href="">百度</a>&nbsp;&nbsp;<a href="">京东</a>
</body>
</html>