媒体元素
<!--视频
src: 资源路径
controls: 控制开关
autoplay: 自动播放 在src前面加上muted
-->
<!--<video src="../resource/video/片头.mp4" controls></video>-->
<!--<video muted src="../resource/video/片头.mp4" controls autoplay></video>-->
<!--音频-->
<audio src="../resource/audio/1.mp3" controls></audio>
页面结构分析
iframe内联框架
<iframe src="https://www.csdn.net/" frameborder="0" width="300" height="300"></iframe>
效果图:
<iframe src="" name="hello" frameborder="0" width="300" height="300"></iframe>
<a href="https://www.csdn.net/" target="hello">点击跳转</a>
<!--target 跳转到指定的页面即hello-->
效果图: