HTML框架(Iframe)

<iframe src="demo_iframe.htm"></iframe>...

HTML表格(Tables)

<table border="1">   <tr>     <...

HTML定义列表

<dl>   <dt>项目 1</dt>     <dd>描述...

HTML有序列表

<ol>   <li>第一项</li>   <li>第二项</li> ...

HTML无序列表

<ul>   <li>项目</li>   <li>项目</li> &l...

HTML样式/区块(Styles/Sections)

<style type="text/css">   h1 {color:red;}   ...

HTML图片(Images)

<img src="URL" alt="替换文本" height="42" width=&qu...

HTML链接(Links)

普通的链接: <a href="http://nez.cn/">链接文本</a>图像链接: <a href=&...

HTML文本格式化(Formatting)

<b>粗体文本</b> <code>计算机代码</code> <em>强调文本</em> <...

HTML基本标签(Basic Tags)

<h1>最大的标题</h1> <h2> . . . </h2> <h3>&nbs...