HTML的主要标签有:
-
<h1> ~ <h6>
定义标题 -
<p>
定义段落 -
<a>
定义链接 -
<img>
定义图像<img src="boat.gif" alt="Big Boat" width=80 height=100/>
-
<br>
定义分行 -
<table>
定义表格<tr>
表示行<td>
表示单元格<th>
表示表头
<tr>
<td colspan="2" style="">
<h1>主要的网页标题</h1>
</td>
</tr>
<tr>
<td style="100px;vertical-align:top;">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript
</td>
<td style="height:200px;400px;vertical-align:top;">
内容在这里
</td>
</tr>
</table>
<ul>
<li>
无序列表<ol>
<dl>
<dt>
<dd>
有序列表
无序列表
- dog
- car
- cat
有序列表
- dog
- car
- cat
- cat
- car
- dog
<div>
<span>
定义区块<div>
<table>
定义布局<form>
定义表单
* `