HTML
HTML的中文是:超文本标记语言是一种用于创建网页的标准标记语言以下是标题、段落、连接、图像等的表示方法
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="background-color:#FFA500;">
<h1>主要的网页标题</h1>
</td>
</tr>
<tr>
<td style="background-color:#FFD700;100px;vertical-align:top;">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript
</td>
<td style="background-color:#eeeeee;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>
定义表单