这里是h1段落
这里是h2段落
这里是h3段落
一段文字里带有重点
一段文字里带有重点
一段文字里带有coding
表示引用文字内容
- 这是无序列表项
- 这是无序列表项
- 这是无序列表项
- 这是有序列表项
- 这是有序列表项
下面这个是嵌套的列表
- 外层列表项目
- 内层列表项目
- 内层无序列表项目
- 内层列表项目
- 外层列表项目
直接把一个URL现实为超链接: 我的博客园
这是一个图像:
行的开头空四格,表示程序代码(另外必须换行再换行,不能只换一次行):
Javascript:
/**
* nth element in the fibonacci series.
* @param n >= 0
* @return the nth element, >= 0.
*/
function fib(n) {
var a = 1, b = 1;
var tmp;
while (--n >= 0) {
tmp = a;
a += b;
b = tmp;
}
return a;
}
document.write(fib(10));