今日主要针对HTML常用标签进行了学习;
1.<a></a>:超链接
2.字体格式标签<b></b>:粗体
<big></big>:字体变大
<br/>:换行
<center></center>:图片或者居中
<em></em>:斜体强调
<hi></hi>:标题(i从1到6)
<hr/>:横线
<marquee></marquee>:滚动
<p></p>:段落
<pre></pre>:格式化文本输出、预定义文本
<strong></strong>:粗体强调
<small></small>:字体变小
<sup></sup>:上标
<sub></sub>:下标
<u></u>:下划线
3.三表中列表及表单标签:
3.1列表
无序列表:<ul style="list-style:none;">
<li></li>
</ul>
有序列表:<ol type="1">
<li></li>
</ol>
自定义列表:<dl>
<dt></dt>
<dd></dd>
<dd></dd>
</dl>
3.2表格
<table border="" width="" height="" bgcolor="" aligin="" cellpadding="" cellspacing="">
<tr>
<td colspan=""></td>
<td rowspan=""></td>
</tr>
</table>
表格中单元格的实际高宽由单元格预定义高宽及单元格内容决定;
时间: 2024-10-10 01:46:36