<!DOCTYPE html>
<html>
<head>
<title>超链接与图像示例</title>
</head>
<body>
<h1>欢迎来到我的网站</h1>
<!-- 创建超链接 -->
<p>访问外部网站:<a href="https://www.example.com">示例网站</a></p>
<p>查看关于我们:<a href="about.html">关于我们</a></p>
<!-- 插入图像 -->
<img src="https://zigao.wang/photo.png" width="200" height="200" alt="我的图片">
</body>
</html>