html的基本标签:
<html>
<body>
<h1>My First Heading</h1>
<h2>this second heading</h2>
<a href="www.baidu.com" > this is a link </a>
<img src="w3c.jpg" width="124" height="104" />
<p>My first paragraph.</p>
</body>
</html>
注:
<h1>My First Heading</h1>
HTML的heading是通过<h1>-<h6>等标签进行定义的;
<h1>/</h1>:开始标签与结束标签成对出现;
<p>My first paragraph.</p>
<p>/</p>定义段落;
<a href="www.baidu.com" > this is a link </a>定义链接;
注:在href后面制定链接的地址;
<img src="w3c.jpg" width="124" height="104" />定义图片;
注:src后面是图片的名字,width是图片的宽度,height定义高度;
原文:http://www.cnblogs.com/commanderzhu/p/5244036.html