html写一个页面,有背景音乐上面有文字和图像。在文字和图像上创建超链接,单击链接时,页面转跳到其他页面
时间: 2024-05-22 12:14:37 浏览: 83
<!DOCTYPE html>
<html>
<head>
<title>我的网页</title>
<style>
body {
background-color: #f2f2f2;
}
h1 {
font-size: 36px;
color: #333;
text-align: center;
margin-top: 50px;
}
#image {
display: block;
margin: 0 auto;
width: 400px;
height: 300px;
background-image: url('https://picsum.photos/id/237/400/300');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
border-radius: 10px;
}
#music {
margin-top: 50px;
text-align: center;
}
#music audio {
margin-top: 10px;
}
</style>
</head>
<body>
<h1>欢迎来到我的网页</h1>
<a href="https://www.baidu.com" target="_blank"><div id="image"></div></a>
<div id="music">
<audio controls autoplay loop>
<source src="music.mp3" type="audio/mpeg">
</audio>
<p>背景音乐: Beyond - 光辉岁月</p>
</div>
<p>这是一段文字,单击<a href="https://www.google.com" target="_blank">这里</a>可以跳转到Google</p>
</body>
</html>
阅读全文