1、初试:
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
2、标题:
HTML 标题(Heading)是通过 <h1> - <h6> 等标签进行定义的。显然由大标题变为小标题....
<html>
<body>
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
</body>
</html>
3、段落:
HTML 段落是通过 <p> 标签进行定义的。
<html>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
4、链接:
HTML 链接是通过 <a> 标签进行定义的。
<html>
<body>
<a href="http://www.cnblogs.com/zjutlitao/">This is a link</a>
</body>
</html>
5、图像:
HTML 图像是通过 <img> 标签进行定义的。必须该图片资源存在,否则会出现下面的效果:
<html>
<body>
<img src="w3school.jpg" width="104" height="142" />
</body>
</html>