其他分享
首页 > 其他分享> > 05_文本格式化标签

05_文本格式化标签

作者:互联网

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>文本格式化标签</title>
</head>
<body>
    <b>加粗文字</b>
    <strong>加粗文字</strong>
    <br>

    <i>倾斜文字</i>
    <em>倾斜文字</em>
    <br>

    <s>删除线</s>
    <del>删除线</del>
    <br>
    
    <u>下划线</u>
    <ins>下划线</ins>
</body>
</html>

标签:文字,下划线,删除,05,标签,文本格式,加粗
来源: https://blog.csdn.net/qq_37887790/article/details/120196810