<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style type="text/css">
body{
padding: 0px;
margin: 0px;
}
a{
margin-left: 150px;
line-height: 50px;
text-decoration: none;
font-weight: 700;
letter-spacing: 1em;
}
a:hover{
font-size: 20px;
color: chartreuse;
text-decoration: none;
}
img{
border: 3px solid palegoldenrod;
padding: 10px;
margin-left: 200px;
}
p{
margin-left: 200px;
/* text-indent: 2em; */
letter-spacing: 10px;
}
audio{
margin-left: 350px;
}
</style>
</head>
<body>
<a href="www.youtuyou.com">我爱你怎么办?
我的微信号是35岁的我以后怎么办.</a>
<div>
<img src="https://ss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=1380934815,3976934462&fm=173&s=169539C8C862A34740F7ED10030050DB&w=559&h=323&img.JPEG"
alt="">
<p>
1.衣带渐宽终不悔,为伊消得人憔悴。<br>
2.死生契阔,与子成说;执子之手,与子偕老。<br>
3.两情若是久长时,又岂在朝朝暮暮。
</p>
</div>
<!-- <audio src="老男孩.mp3">我是老男孩</audio>
<video width="320" height="240" src="老男孩.mp3">我是老男孩</video> -->
<!-- <video width="320" height="240" controls>
<source src="老男孩.mp3" type="video/mp4">
<source src="老男孩.mp3" type="video/ogg">
</video> -->
<audio controls>
<source src="老男孩.mp3" type="audio/ogg">
<source src="老男孩.mp3" type="audio/mpeg">
您的浏览器不支持 audio 元素。
</audio>
</body>
</html>
|