标签:之间 enter lin html www color 连接 内容 src
<html><html>
<body>
<h1>标题1号字体</h1>
<h2>标题2号字体</h2>
<h3>标题3号字体</h3> //通过h定义标题
<p>段落</p>
</body>
</html>
<html>
<body>
<p>这是段落</p>
<P>这是段落</P> //通过p定义段落
</body>
</html>
<html>
<body>
<a href="http://www.w3school.com.cn">
This is a link</a> //通过a定义连接
</body>
</html>
<html>
<body>
<h1 align="center">This is heading 1</h1>
<p>上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。</p>
</body>
</html>
<html>
<body bgcolor="yellow">
<h2>请看: 改变了颜色的背景。</h2>
</body>
</html>
<!DOCTYPE HTML>
<html>
<body>
<img src="watermark.png" width="300" height="120" /> //图片
</body>
</html>
标签:之间 enter lin html www color 连接 内容 src
原文地址:https://blog.51cto.com/13562306/2379516