跳转小程序代码
<!DOCTYPE html>
<html>
<head>
<title>Stylish Button</title>
<style>
.button {
display: inline-block;
padding: 10px 20px;
background-color: #ff5f5f;
color: #fff;
font-size: 18px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #ff3f3f;
}
</style>
</head>
<body>
<a href=”” class=”button”>不用登录,点击跳转微信小程序免费下载</a>
</body>
</html>