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

WEB设计综合
使Flash页面通过校验
WEB 标准剖析
制作网页中的渐变背景
表格特效代码全集
Photoshop 打造金属指环
网页标准中链接属性 rel 与 target
HTML在线编辑器的调用及使用方法
div+css设计网页时浮动问题的解决方法
解决XHTML+CSS2.0式的页面结构在IE5和IE5.5下的BUG
WAP 开发出现的中文显示问题
详细的IMG,IFRAME的属性参考
可通过XHTML1.0校验的Flash嵌入代码
在IE和FIREfOX下正常显示的网页内嵌播放器代码
使 XHTML Strict 支持 target 标签
语言(文化)代码与国家地区对照表
网站设计技术规范
点击连接时不出现虚边框的方法
制作1px边框表格的几种方法
图片横向连续滚动的代码
合理架构css

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


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

登陆 | 还没注册?