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

WEB设计综合
合理使用HTML标签进行CSS布局
IE中伪类:hover的使用及BUG
CSS floats创建三列式网页布局
display:inline-block的深入理解
由浅入深漫谈margin属性
PDF、ZIP、DOC链接的标注
纯CSS代码实现翻页
CSS在表格边框上的美学应用
CSS的超级技巧大放送
创造收藏夹中的个性化图
让网页里的提交按钮变得更靓
让弹出窗口变得“体贴”
在html文件中引入其它html文件
用好超级链接标记—A
HTML语言的语法基础及规则
像表格table一样轻松布局div层
XHTML+CSS布局之XHTML应用小结
Html 书签的使用
有关HTML代码的另类应用技巧
避免表格(table)被撑开变形的CSS代码

WEB设计综合 中的 HTML基础


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

登陆 | 还没注册?