HTML

HTML Projects

HTML Project

adplus-dvertising
HTML COLORS
Previous Home Next

The quality of your web page design always increased when you use colors in sophisticated manners. If you use colors that don't have enough contrast your site visitors will have trouble while reading your pages.you should choose colors that makes visual as well as artistic sense. the values which attributes has taken while giving colors to the text can either be defined color name or hexadecimal values.

<html>
<head>
<title> adding body attributest</title>
<body  bgcolor="#FFFFFF" text="#000000" link=#"CCCCCC" vlink="#999999" alink="#FFFFFF">
These are the few imporatnt links
<p>
<a href="http://www.r4r.co.in/">Java Tutorials</a> <p>
I like the site becouse I like the contents and design of site
</p>
</body>
</head>
</html>

alink Active link: alink="#FFFFFF" this is the color that is appears when the link is made active when a mouse clicks it or passes over the link, depending on the browsers you using.

vlink Visited Link: This is the visited link. As with the link attribute, if you don't set this with a value ,the browser will look for a default (usually purple) or a user defined setting. vlink="#999999"

bg color Background color or bg color="#FFFFFF" this sets the color that will fill your background, browser used to default to be very ugly grey. bacground="url" only use this attribute when you want to include background graphic on your page.

Previous Home Next