当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 文本和颜色

WEB设计综合
连接基础
HTML基础
CSS 基础
添加背景音乐
HTML中的脚本标签
水平线样式
CSS基础以及CSS代码
自定义404错误页
链接至外部样式表
文本和颜色
表格详述
图像详述
优化CSS样式表代码
CSS元素div ul dl dt ol简释
CSS元素的class与ID命名常用关键字
DIV布局SEO的影响
CSS中的相对定位与绝对定位
CSS选择符
CSS特殊选择符伪类的应用技巧
常用的CSS知识

WEB设计综合 中的 文本和颜色


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1343 ::
收藏到网摘: n/a

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
颜色

popular_colors
当前流行色


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[表格]中使用相同的命令,我们将在后期将你具体的使用方法。

评论 (0) All

登陆 | 还没注册?