<!DOCTYPE html>
<head>
<body>
<p> 这是html</p>
<h1>只是</h1>
<img src="https://img.alicdn.com/imgextra/i1/6000000005296/O1CN013O1CVV1ozcCioViGU_!!6000000005296-0-octopus.jpg_490x490q100.jpg_.webp" height="200px" width="300px" >
<!--a链接跳转到当前页面-->
<a href="https://www.baidu.com" target="_self">
跳转页面
</a>
<br>
<!--a链接跳转到新页面-->
<a href="https://www.baidu.com" target="_black">
跳转页面
</a>
<br>
<!--a链接跳转到指定页面-->
<a href="https://www.baidu.com" target="baidu">
打开百度
</a>
<br>
<iframe src="" name='baidu'>
</iframe>
<br>
<a href="#footer" >
跳转到底部
</a>
<div id='footer' style="margin-top: 960px">底部</div>
<a href="#">顶部</a>
</body>
</head>