HTML的全局架构标签:
一个最基本的网页文件的组成结构:
<html>
<head>
<title>显示在浏览器左上方的标题</title>
</head>
<body bgcolor="red" text="blue">
<p>红色背景,蓝色文本</p>
</body>
</html>
<body>标签的属性:
text属性:设定这个网页中的文字颜色。
link属性:设定一般超链接文本的显示颜色。
alink属性:设定鼠标移动到超链接上时,超链接文本显示颜色。
vlink属性:设定访问过的超链接文本的显示颜色。
background属性:设定背景墙纸所用的图像文件。
bgcolor属性:用于设定背景颜色。