1.嵌入多媒体文件:
<embed src="视频.mp4"/>
2.背景音乐:
<bgsound src=# loop=M /> #:WAV文件的URL M:循环次数
3.gif图像作为视频的封面,在浏览器尚未完全读入AVI时,先显示图像:
<img src="f.gif" dynsrc="clock.avi" loop="2" start="mouseover" />
4.HTML文档结构:
<html>...</html>
<head>...</head>
<body>...</body>
5.浏览器使用uif-8码来显示页面:
<meta http-equiv="content-tyep" content="text/html;charset=utf-8" />
6.网页本身的编码应当和content-type指令的编码一致。
7.<body bgcolor="背景颜色" text="文字颜色" link="链接颜色" alink="被点击时的颜色" vlink="已点击的颜色" backgroucn="背景图片" >
8.标尺(画一条线):左对齐,无阴影。
<hr size="6px" width="100px" align="left" noshade />
9.粗体:<b></b>;斜体:<i></i>;中间有划线:<s></s>.
10.电脑系统里有的字体:
<font face="华文新魏">好知网</font>
11.不换行:<nobr/>
12.客户端图像映射:坐标体系。
<img src="img.gif" usemap="#Face">
<map name="Face">
<area shape="rect" herf="#" coords="140,20,280,60" />
</map>