HTML-框架标签/字符实体
2025-08-21 本文已影响0人
大炮打小鸟
iframe
可以嵌入其他网页
常用属性:
src是网页地址 、网页能打开的其他(图片、视频等)地址
width宽度
height高度
frameborder 0没有边框 1有边框
<iframe src="https://www.baidu.com" width="900" height="300" frameborder="1"></iframe>
还可以配合a、form标签,a、form标签target绑定iframe的name即可
<form action="https:so.toutiao.com/search" target="container">
<input type="text" name="keyword">
<input type="submit" value="搜索">
</form>
<iframe name="container" frameborder="0" width="900" height="300"></iframe>
字符实体
| 符号 | 描述 | 实体名称 | 实体编号 |
|---|---|---|---|
|
  |
||
| < | < |
< |
|
| > | > |
> |
|
| & | & |
& |
|
| " | 引号 | " |
" |
| ´ | 反引号 | ´ |
´ |
| ¢ | 分(cent) | ¢ |
¢ |
| £ | 镑(pound) | £ |
£ |
| ¥ | ¥ |
¥ |
|
| € | 欧元(euro) | € |
€ |
| © | © |
© |
|
| ® | 注册商标 | € |
® |
| ™ | 商标 | ™ |
™ |
| × | × |
× |
|
| ÷ | © |
÷ |
完整实体列表请参考:HTML Standard (whatwg.org)