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

WEB设计综合
CSS处理表格边框
DIV+CSS网页布局常用的方法与技巧
优化WEB应用的方法
把XHTML+CSS页面转换成为打印机页面
CSS兼容要点
CSS的三种选择器
跨浏览器的CSS固定定位
shtml精简教程
首页head代码规范
导航页用CSS标志当前页效果
z-index的IE之旅
用CSS按比例缩小图片
针对IE6、IE7和Firefox的CSS
细线表格制作方法
meta标签大作用
网页背景设计
页面控制出现的常见问题及解决办法
重构、标准、布局
网页设计中HTML常范的五个错误
HTML超文本标记语言速查手册

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1347 ::
收藏到网摘: 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

登陆 | 还没注册?