标签:
html常用的格式化标签使用如下
1 <html> 2 <head> 3 <title></title> 4 </head> 5 <body > 6 <!-- 7 <p> paragraph段落标签 8 align:left center right 9 <br> 换行 breakrow 10 <hr> 行水平线 horizontal row 11 color width:100(px),50% 两种表示方法 align 12 size 高度 noshade 无阴影 13 <pre>预格式化标签 多用于显示代码,比如对代码进行预先换行 14 --> 15 <p align="center">段落wwwwwwwwwwwwwwww</p> 16 <hr color="red" width="50%" size="20" noshade="noshade" align="left"/> 17 <pre> 18 using System; 19 class Program 20 { 21 static void Main(string[] args) 22 { 23 Console.WriteLine("Hello World"); 24 } 25 } 26 </pre> 27 </body> 28 </html>
运行结果:
特殊字符
> 大于符号(greater than) < 小于符号(less than) & 连接符(&)
® 注册商标(registration ) © 版权符号 ™ 商务符号
不可打断空格(not break space)
关于空格
如果内容的两边没有其他数据类型,那么空格将会被忽略。如果空格在换行加载内容中间,只算一个空格。
标签:
原文地址:http://www.cnblogs.com/zk-ljc/p/5491582.html