首页 > Web开发 > 详细

HTML-pre标签和code标签

时间:2019-05-27 21:22:46      阅读:134      评论:0      收藏:0      [点我收藏+]

<pre>:预格式化标签

<code>:将字符设置为等宽字符的标签

在html文件中需要显示一些比如< >这种符号时需要使用到实体化字符

> &#60

< &#62

<!  DOCTYPE html>
<html>
<head>
    <title>预格式化</title>
    <meta charset = “utf-8”>
    <meta name = “viewport” content = “width=device-width, initial-scale=1.0”>
    <meta name = “keyword” content = “预格式化文本”>
    <meta name = “description” content = “预格式化纯文本”>
    <meta author = “王思怡”>
    <style>
    body{
    background:pink;
    }
    </style>    
</head>
<body>
    <!—- 以下代码的括号需要使用实体化字符来写 —->
    <pre>
    &#60;DOCTYPE !html&#62;
    &#60;html&#62;
    &#60;head&#62;
        &#60;title&#62;预格式化&#60;/title&#62;
        &#60;meta charset = “utf-8”&#62;
        &#60;meta name = “viewport” content = “width=device-width” initial = 1.0&#62;
        &#60;meta name = “keyword” content = “预格式化文本”&#62;
        &#60;meta name = “description” content = “预格式化纯文本”&#62;
        &#60;meta author = “王思怡”&#62;
        &#60;style&#62;
        body{
        background:pink;
        }
        &#60;/style&#62;    
    &#60;/head&#62;
    &#60;/html&#62;
    </pre>
<body>
</html>
<!DOCTYPE html>
<html>
<head>
    <title>code标签的使用</title>
    <meta charset = “utf-8”>
    <meta name = “viewport” content = “width=device-width, initial-scale=1.0”>
    <meta name = “keyword” content = “code标签的使用”>
    <meta name = “description” content = “code标签的使用”>
    <meta author = “王思怡”>
    <style>
    body{
    background:pink;
    }
    </style>
</head>
<body>
    <pre>
    <code>
        &#60;DOCTYPE !html&#62;
        &#60;html&#62;
        &#60;head&#62;
            &#60;title&#62;预格式化&#60;/title&#62;
            &#60;meta charset = “utf-8”&#62;
            &#60;meta name = “viewport” content = “width=device-width” initial = 1.0&#62;
            &#60;meta name = “keyword” content = “预格式化文本”&#62;
            &#60;meta name = “description” content = “预格式化纯文本”&#62;
            &#60;meta author = “王思怡”&#62;
            &#60;style&#62;
            body{
            background:pink;
            }
            &#60;/style&#62;    
        &#60;/head&#62;
        &#60;/html&#62;
    </code>
    </pre>
</body>
</html>

 技术分享图片

HTML-pre标签和code标签

原文:https://www.cnblogs.com/sucker/p/10933353.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!