html学习2

1.文本格式化标签

点击查看代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<strong>加粗效果</strong>
<b>加粗效果</b>
<em>倾斜效果</em>
<i>倾斜效果</i>
<ins>下划线</ins>
<u>下划线</u>
<del>删除线</del>
<s>删除线</s>
</body>
</html>
2.超链接
点击查看代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<a href="https://www.cnblogs.com/">博客园跳转</a>
<!--_blank是打开一个新页面的跳转-->
<a href="https://pintia.cn/home" target="_blank">pta跳转</a>
</body>
</html>
3.音频
点击查看代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<audio src="./你干嘛啊哎哟_爱给网_aigei_com.mp3"controls loop autoplay></audio>

<audio src="./%5B猫meme%5D旋转猫-慢倍_爱给网_aigei_com.mp3"controls loop autoplay></audio>

<video src="./6694e468297a6290625dd7ed0a849232.mp4" controls loop muted autoplay></video>
</body>
</html>
posted on 2025-02-20 18:59  睡觉时候不困  阅读(13)  评论(0)    收藏  举报