码迷,mamicode.com
首页 > Web开发 > 详细

HTML之学习笔记(四)格式化标签和特殊字符

时间:2016-05-14 00:42:45      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:

  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>

运行结果:

技术分享


 

特殊字符

  &gt;  大于符号(greater than)   &lt; 小于符号(less than)     &amp;  连接符(&)

  &reg;  注册商标(registration )  &copy;  版权符号         &trade;   商务符号

  &nbsp;   不可打断空格(not break space)

关于空格

  如果内容的两边没有其他数据类型,那么空格将会被忽略。如果空格在换行加载内容中间,只算一个空格。

 

 

  

 

HTML之学习笔记(四)格式化标签和特殊字符

标签:

原文地址:http://www.cnblogs.com/zk-ljc/p/5491582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!