文本和颜色

Text
文本

You could leave text unformatted, but it looks bad. In order to use different fonts and sizes, follow the code below.
你可以保留未定义格式的文本,但是,这看上去并不美观。为了能够使用不同的字体和尺寸,你需要使用下面这样的代码:

<font face="Verdana" size="1">


I recommend that you place more then one font, seperated by commas, as shown below. With this, if the viewer's computer doesn't have the font you are using, it has alternative choices. I'd always try to use common fonts that everyone should have.
我建议你想下面演示的这样使用多种字体,并通过逗号分开。这样一来,如果浏览者的电脑中并不包含首个字体,那么他就会自动选择替代字体。我通常尝试使用所有电脑中都支持的字体。

<font face="Verdana, Arial" size="2">


In action....
继续…

<font face="Verdana, Arial" size="2">Text Goes here</font>


Text Goes here
上述代码对应的文本演示结果

Color
颜色


当前流行色


Adding color to text and backgrounds are very simple.
为文本和背景添加颜色是非常容易的。

<font face="Verdana, Arial" size="1" color="#990033">Text Goes here</font>


Text Goes here
上述代码对应的文本演示结果

Adding Color to backgrounds:
为背景添加颜色:

<body bgcolor="#FFFFFF">


As you can see, you place the bgcolor command in the body tag. You can use this same command in tables, which you will learn about later.
正如你所看到的那样,你将bgcolor命令加入了body标签中。你在可以table[表格]中使用相同的命令,我们将在后期将你具体的使用方法。

posted @ 2010-01-21 11:57  doing_zzh  阅读(195)  评论(0编辑  收藏  举报