php002

作者: 招财大龙猫 | 来源:发表于2016-03-16 08:07 被阅读15次
铁汉柔情

html基础元素

//加行号

auto_match_enabled:false,
//关闭自动补全(", ',(),{})

highlight_line:true,
//加背景线

设置->用户 改变字体大小

command+/
//添加注释

command+u
//查看浏览器源代码,也可以看到html注释

h1 ,字体大小最好通过span,css来设置
加粗的1号字体

实体(&与;之间的加一些字母)与大于小于号等html能识别的符号的区分
(1)< :&lt (less than 两个单词的首字母)
(2)> :&gt (greater than 两个单词的首字母)
(3)空格 :&nbsp

颜色:
吸色器去吸
白色: ffffff
黑色: 000000
红色: ff0000
绿色: 00ff00
蓝色: 0000ff
黄色: ffff00

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>index</title>
</head>
<body bgcolor="333333">
    <h1>实体与大于小于号等html能识别的符号的区分</h1>
    &lt;h1&gt;实体与大于小于号等html能识别的符号的区分&lt;/h1&gt;
    <h2>测试&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;空格</h2>
</body>
</html>

相关文章

  • php002

    html基础元素 //加行号 auto_match_enabled:false,//关闭自动补全(", ',(),...

网友评论

      本文标题:php002

      本文链接:https://www.haomeiwen.com/subject/mvyqlttx.html