Place your TextLink AD here free
|
When designing elements for your webpage, you will often be called upon to specify a color. For example, the code for a span shown below specifies that the color of the text within the span will be yellow.
Text
Colors can be specified according to their names, for example "yellow", "green", or "blue". In many cases, these simple color names will work. But what if you want to specify a more sophisticated color like "cornflowerblue"? A particular browser may not recognize a particular color name. It's more reliable to specify colors with an "RGB triplet".
An RGB triplet specifies a color based upon the amounts of red, green, and blue, on a scale from 0 to 255, required to create the color. For example, to create the color cornflowerblue you need red=100, green=149, and blue=237. We could then specify the color of the text within a span using the rgb function as shown below.
Text
This will work fine with style notation, but what if you want to use straight html. Html doesn't recognize the rgb function. In that case, you can specify color using "hexadecimal" notation. Whereas the decimal numbering system uses the characters 0 through 9 to get 10 values, the hexadecimal numbering system uses the characters 0 through f to get 16 values. (After 9 the characters a, b, c, d, e and f are used, as shown below.)
Decimal Hexidecimal Equivilants
dec hex
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 9
10 = A
11 = B
12 = C
13 = D
14 = E
15 = F
On first appearance, this looks pretty simple but you need two hexadecimal characters to represent all decimal values from 0 to 255. When you increment decimal 9 by 1, you change the 9 to 0 and put 1 in the ten's place. When you increment hexidecimal F by one, you change the F to 0 and put 1 in the "sixteens" place. Sometimes it's not easy to convert between decimal and hexadecimal in your head.
RGB Triplet for Cornflowerblue
color dec hex
red 100 64
green 149 95
blue 237 ED
We could then specify the color of text within a span using the hexadecimal notation as shown below.
Text
Note that when we indicate the use of hexadecimal notation by placing a pound (#) sign in front of the number, and we don't use commas to separate the color components.
If it's not easy to convert between decimal and hexadecimal in your head, then how do you do it? You can use a calculator that has a decimal to hexadecimal coversion function, or you can learn to think in hexadecimal. For example, what's the next number after CE? That would be CF. what's the next number after CF? That would be D0. Which hexadecimal number is higher 99 or B2? B2 would be higher than 99. It gets easier with experience.
Here's Java Script code for a simple decimal to hexidecimal color converter
function convert(decvalue)
{
var num = parseInt(decvalue);
if(num >= 0 && num < 256)
{
var hexnum = num.toString(16);
alert("#" + hexnum);
}
else {alert("Error!");}
}
It's important to use hexadecimal notation to specify colors when you use DHTML with visual effects, because to create a dynamic color change you have to increment or add a value to a color. The vast amount of color specification on webpages is in hexadecimal notation, so it would be wise to become familiar with it.
Copyright(C) Bucaro TecHelp.
Permission is granted for the below article to forward, reprint, distribute, use for ezine, newsletter, website, offer as free bonus or part of a product for sale as long as no changes are made and the byline, copyright, and the resource box below is included.
About The Author
To learn how to maintain your computer and use it more effectively to design a Web site and make money on the Web visit bucarotechelp.com. To subscribe to Bucaro TecHelp Newsletter visit http://bucarotechelp.com/search/000800.asp
RELATED WEB SITE DESIGN ARTICLES:
Web Coach Tip: The Single Most Important and CRUCIAL Element of Your Web Site Here's the single most important part of your website: YOUR WEB COPY! And remember: Your website isn't about YOU, it's about THEM!Again, it's NOT about you, it's about THEM!*Note: May I add, this is an area where most of my clients get stuck?If you find yourself at a total loss when it comes to writing, please let me know. ______________________________________________Write/gather/compile; prepare copy for your main pages:? Answer question. Designing Professional Web Pages If your Web site doesn't project a professional and polished image to your visitors, your credibility and that of your products and services will suffer. Image is everything -- especially online where your competitor is only one mouse click away!Before your first HTML code is written, you will need to conider your Web site's navigational structure, color scheme and page layout. Tips for a Successful Website for Any Organization, NGO or GO Most NGOs (Non-Governmental Organization) don't understand these important aspects of a successful website. Even many governmental organization (GOs) could improve their sites by following these tips. Top Ten Ways to Increase Web Sales - Part 1 You have only 10 seconds to impress your potential buyer. Your Web site visitors don't care about you. Offshore Web Design and Development - Use Great Opportunities Sooner or later every small or medium business owner realizes that he needs a web site for his business. And almost everybody wants to have great web site for affordable price because usually web site design budget is quite limited. 10 Reason Why You Need A Multilingual Website The internet continues to grow and has become the default point of call for businesses and individuals searching for goods, services or information. For businesses wishing to get that competitive advantage, a multilingual website now presents one of the most high impact means of expanding a client base and securing greater sales volumes. Keep It Simple, Stupid: The Beauty of a Clean Cut Website Don't knock it; "Keep It Simple, Stupid" is a great rule to live by. Nobody likes a website to "yell" at them, with blaring colors and flashing lights. Orient Your First-time Web Site Visitor Imagine spinning someone around so profoundly and for so long that when you finally tell them to open their eyes, they ask "Where am I?" not knowing if they are even on the same continent they started from. When someone comes to your web site from a search engine or through a link from another site, it's like that for them. What Content to Publish on Your Website Many businesses want a simple website where they tell people what their business is about, some information on the products they offer and a means of contacting them.However, content is vital in the growth of your Internet presence. Content is Crucial! Content is undoubtedly the most important element of a website. It is the defining factor for a website, that which catches the interest of your visitors and keeps them hooked to your site. Build A Successful Website For Dummies So you want to build a website here I will explain some simple but also key aspects that are commonly taken in to consideration when a website developer creates a website. 1) Website Design - The website design must be neat meaning that everything looks like where it is meant to be (nothing out of place or out of proportion). Why You Should Hire a Professional Website Designer Your web site should always adhere to standards!A professional web site designer will provide you with a standard compliant web site that is cross-browser supported.What does this mean to you? Why should you care? Any site that isn't standard compliant can "break" in older browsers, or simply not display at all in, say, text-based browsers. How To Give Your Business Credibility Let's face it. Buying products and services from the Internet can be a bit intimidating. Stop Sabotaging Your Sales Do your web pages, sales letters or personal presentation include subtle distraction that unnecessarily cause you to lose sales?Sometimes prospective customers get distracted during the selling process by outside interruption. You cannot control those. Top 10 Web Design Mistakes As a webmaster, you want to keep your visitors content so they'll come back again. Below you will find ten common mistakes made by webmasters that may deter people from returning. Why Your Site Should be Developed with CSS and Semantic Markup Why your site should be developed with CSS and semantic markup. One thing that I have learned in over a decade developing web sites is that the Net is continually changing, and to keep up you need to change with it. One of the more recent developments in web design is the use of CSS and semantic markup. Why Use a Web Design Template? What is a Website Template?Many smart and savvy businesses are choosing to use a website template, and avoiding employing a professional designer. Why? Well, there are clear benefits: saving on cost, saving on time, and ensuring quality. The Top 8 Website Sins Part Two Sin #5Poor Spelling And GrammarWe all make mistakes when we write things down or type things out. Nobody is 100% perfect but a huge number of website owners completely ignore the basics of spelling and grammar. Effective Web Design Usability Principles Website Design Usability Tips1. Getting to know about audience members. You want a site that has personality and quality content based on your audience taste. 10 Important Web Design Tips: SEO Friendly Website A website should firstly be searched out by visitors before talking about attracting or retaining those visitors. Nowadays, a "well designed website" does not only relate to a web site's visual attractiveness but more importantly, how friendly it is with search engines. |
|
Click here to
Find used office equipment in Ohio at www.OfficeJax.Has.It Find the best fleamarkets at www.FleaMarketWorld.Has.It Find electric powered vehicles at www.NoGas.Drives.It
Find advertising supplies below wholesale in Akron, Ohio
|
Akron University of Akron university housing available
Text Link Ads |
auction news and listings for Akron, Ohio Akron crafts and hobby news center Advertising and promotion Akron, Ohio The Akron blogging news center Akron Ohio web site design news Akron Mortgaging and refinancing
|
|