当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > HTML基础

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设计综合 中的 HTML基础


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

Basic HTML stucture looks similar to this:
HTML
基础框架书写如下:

<html>
<head>
</head>

<body>
</body>
</html>

Place your page's main content in between <body> and </body> (text, images, links, etc...) Place things like CSS, meta tags, and titles in between <head> and </head>. To change the background color of your page, replace <body> with:

将网站的主要内容放置于<body></body>标签当中(内容可以包括:文本、图片、链接等等)。将CSSmeta标签和标题放置在<head><head>标签中。将页面中的body用下面的代码替换,从而改变背景颜色:

<body bgcolor="red">


In other words, you are adding bgcolor="red". You can change red to any color you like (blue, silver, black, orange) or, you can use HEX codes to get a more specific color. For example, #000000 is black, and #FFFFFF is white. HEX codes consist of six characters, either letters or numbers. Here is a HEX code chart:

换句话说,你添加了bgcolor="red"。你可以通过修改“red[]”属性将页面背景改变成你自己喜欢的颜色(如blue []silver []black []orange []);或者,你还可以使用16进制色彩代码来获取更多的颜色。如:#000000代表黑色、#FFFFFF代表白色。16进制代码由六位字符组成,每个字母都是一个数字。下面列举了16进制代码图表:

hex code chart

To use an image as your background, copy the code below, and replace the <body> tag with it.

你可以通过复制下面的代码将背景设置为图像,放置在<body>标签中:

<body background="IMAGE URL">

Replace IMAGE URL with the url of the image you want as your background. To change the color of your text, use the code below:

将“IMAGE URL”替换为具体的图像所在的链接路径,从而放置你喜欢的背景图片。你可以通过改变下面的文本代码来改变文本颜色:

<font color="#000000"> text text text</font>


Replace #000000 with the HEX code or color you want, and replace "text text text" with your text. To create an image, use the code below:

将“#000000替换为你所希望的颜色代,将“text text text”替换为你自己的文本内容。通过下面的代码创建图像。

<img src="IMAGE URL">

Replace IMAGE URL with the url of the image you want to show up.

将“IMAGE URL”替换为具体的图像url

评论 (0) All

登陆 | 还没注册?