HTML讲解(一)body部分_html body-CSDN博客
html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>title</title>
</head>
<body>
<a href="https://blog.csdn.net/2301_80349538/article/details/142285569" target="_blank">12</a>
<a href="https://blog.csdn.net/2301_80349538/article/details/142285569" target="_self">12</a>
<a href="#topic1">第一章</a><br>
<a href="#topic2">第二章</a><br>
<a href="#topic3">第三章</a><br>
<a name="topic1">第一章</a><br>
<a name="topic2">第二章</a><br>
<a name="topic3">第三章</a><br>
</body>
</html>