| |
撰写提示
允许 HTML标签: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.
For more information see W3C's HTML Specifications or use your favorite search engine to find other sites that explain HTML.
| 标签说明 | 您输入 | 您得到 |
| 链接被用来链接到其他页面。 | <a href="http://5g.my/huatuan/meeting">华团会议规范</a> | 华团会议规范 |
| 着重 | <em>着重</em> | 着重 |
| 强调 | <strong>强调</strong> | 强调 |
| 引用 | <cite>引用</cite> | 引用 |
| 编码化文本,用于显示程序源代码 | <code>编码化</code> | 编码化 |
| 无序列表——使用 <li> 开始每个项目 | <ul> <li>第一个项目</li> <li>第二个项目</li> </ul> | |
| 顺序列表- 使用 <li> 来开始每个项目 | <ol> <li>第一个项目</li> <li>第二个项目</li> </ol> | - 第一个项目
- 第二个项目
|
| 定义列表类似于其他 HTML列表。<dl> 开始定义列表,<dt> 开始定义列表项,<dd> 则开始列表描述。 | <dl> <dt>第一个项目</dt> <dd>第一个定义</dd> <dt>第二个项目</dt> <dd>第二个定义</dd> </dl> | - 第一个项目
- 第一个定义
- 第二个项目
- 第二个定义
|
Most unusual characters can be directly entered without any problems.
If you do encounter problems, try using HTML character entities. A common example looks like & for an ampersand & character. For a full list of entities see HTML's entities page. Some of the available characters include:
| 字符说明 | 您输入 | 您得到 |
| 与标记 | & | & |
| 大于号 | > | > |
| 小于号 | < | < |
| 引号 | " | " |
- 行和段被自动识别。 <br />分行、<p> 段落开始以及lt;/p>段落结束标记被自动插入。 如果段落没有被识别出来,只要加入一对空行。
- Images can be added to this post.
| |