<html></html>Creates an HTML document 创 建 一 个HTML 文 档
<head></head>Sets off the title and other
information that isn't displayed
on the Web page itself 设 置 文 档 标 题 以 及 其 他 不 在WEB 网 页 上 显 示 的 信 息
<body></body>Sets off the visible portion of
the document 设 置 文 档 的 可 见 部 分
Header tags
标 题 标 签
<title></title>Puts the name of the document
in the title bar 将 文 档 的 题 目 放 在 标 题 栏 中
Body attributes
文 档 整 体 属 性
<body bgcolor=?>Sets the background color,
using name or hex value 设 置 背 景 颜 色, 使 用 名 字 或 十 六 进 制 值
<body text=?>Sets the text color, using
name or hex value 设 置 文 本 文 字 颜 色, 使 用 名 字 或 十 六 进 制 值
<body link=?>Sets the color of links,
using name or hex value 设 置 链 接 颜 色, 使 用 名 字 或 十 六 进 制 值
<body vlink=?>Sets the color of followed
links, using name or hex value 设 置 已 使 用 的 链 接 的 颜 色, 使 用 名 字 或 十 六 进 制 值
<body alink=?>Sets the color of links on click 设 置 正 在 被 击 中 的 链 接 的 颜 色, 使 用 名 字 或 十 六 进 制 值
Text tags
文 本 标 签
<pre></pre>Creates preformatted text 创 建 预 格 式 化 文 本
<h1></h1>Creates the largest headline 创 建 最 大 的 标 题
<h6></h6>Creates the smallest headline 创 建 最 小 的 标 题
<b></b>Creates bold text 创 建 黑 体 字
<i></i>Creates italic text 创 建 斜 体 字
<tt></tt>Creates teletype, or
typewriter-style text 创 建 打 字 机 风 格 的 字 体
<cite></cite>Creates a citation, usually
italic 创 建 一 个 引 用, 通 常 是 斜 体
<em></em>Emphasizes a word (with italic
or bold) 加 重 一 个 单 词( 通 常 是 斜 体 加 黑 体)
<strong></strong>Emphasizes a word (with italic
or bold) 加 重 一 个 单 词( 通 常 是 斜 体 加 黑 体)
<font size=?></font>Sets size of font, from 1 to 7 设 置 字 体 大 小, 从 1 到 7
<font color=?></font>Sets font color, using name or
hex value 设 置 字 体 的 颜 色, 使 用 名 字 或 十 六 进 制 值
..........
看参考资料吧很全
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot>
<html xmlns="http://www.w3.org/1999/xhtml&quot >
<head>
<title>Untitled Page</title>
</head>
<body>
<script type="text/javascript">
var Max = 20
var Now = 1
var Temp = 0
var type = "1"//增加 --0 减少
var timeOut
Init=function(){
//alert(Now)
var result=document.getElementById("result")
if(type=="1"&&Max>Now){
Temp = Max-Now
result.innerHTML+=Temp+","
if(Now==19){
type="0"
Now=1
Temp=2
result.innerHTML+="<br/>"
}else{
Now=Now+1
}
}else{
result.innerHTML+=Temp+","
if(Temp==20){
type="1"
result.innerHTML+="<br/>"
}else{
Temp=Temp+1
}
}
timeOut = setTimeout("Init()",200)
}
Stop=function(){
clearTimeout(timeOut)
}
window.onload=Init
</script>
<div id="result"></div>
<input type="button" value="Stop" onclick="Stop()" />
</body>
</html>