一、格式
<html>
<head>
</head>
<body>
</body>
</html>
二、第一课
1、加<title>网页名字</title>(在<head>中)
2、<br>换行
3、<hr color="red"> 分割线,颜色设置为红色
3、<body color="red"></body>(body中)设置背景颜色
4、<font size="4"></font>设置字体大小
5、段落对齐方式:
<p align="对齐方式"></p>
align取值为left 左对齐
align取值为right 右对齐
align取值为center 居中对齐
6、段落标签<p></p>
7、滚动(在</body>下面,</hetml>中)
<marquee direction="滚动方向" behavior="滚动方式" loop="滚动次数" bgcolor="弹幕背景颜色"scrollamount="滚动速度"scrolldelay="滚动延迟"><font size="文字大小字号:如4,5,6" color="文字颜色">弹幕文字</font></marquee>
direction取值:up向上、down向下、left向左(默认)、right向右
behavior取值:scroll循环滚动、slide滚动一次、alternate来回交替滚动
loop取值必须为整数
scrolldelay取值以毫秒为单位ms
scrollamount取值为文字每次移动长度,以像素为单位
三、第二课
1、 无序列表
<ul>
<ul type="square">
<li>输入内容1</li>
<li>内容2</li>
<li>内容3</li>
</ul>