Files
ClassContent/历届学生/韩想/项目开发/课程项目/a锚点/index.html
2024-09-27 02:06:13 +08:00

41 lines
795 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#about {
height: 2000px;
background: red;
transition: all ease 3s;
}
#joinme {
height: 2000px;
background: blue;
transition: all ease 3s;
}
#connect {
height: 2000px;
background: yellow;
transition: all ease 3s;
}
</style>
</head>
<body>
<a href="#about">关于我</a>
<a href="#connect">联系</a>
<a href="#joinme">加入我们</a>
<div id="about"></div>
<div id="joinme"></div>
<div id="connect"></div>
</body>
</html>