Gain an edge by viewing your competitors source code

Written by Burke Ferguson


Continued from page 1

Ok, here arerepparttar steps forrepparttar 132471 two major browsers:

In IE or Internet Explorer, go to your Main Menu, then to View, then own to Source.

Thats: Main Menu -> View -> Source

then upon clicking Source, a notepad window will pop open which will showrepparttar 132472 web pages HTML source code forrepparttar 132473 webpage, thats presently within your IE browser.

And in Netscape Navigator,...repparttar 132474 same thing,...

Main Menu -> View -> Page Source(Crtl+U)

then a Netscape Navigator window will open up, showingrepparttar 132475 web page source code torepparttar 132476 webpage presently in Netscape. Now with Netscape,repparttar 132477 code is highlighted inrepparttar 132478 viewer compared to in IE. This makes it a bit better and easier to understand if your familiar with HTML.

I say again, this assumes of course that you knowrepparttar 132479 basics of HTML code. However, if your at all knowledgeable in CSS, Javascript, Flash, and so on then you'll get more out of looking atrepparttar 132480 source code.

Being able to viewrepparttar 132481 source code of webpages can be quite enlightening, believe it or not. This can be to perhaps get ideas for page layouts and/or keyword placement etc..

It can be a very valuable tool for Search Engine Optimizers to get a better understanding of optimizing a web page with meta tags and so on. And it can also provide a huge aid in learning HTML and understanding how others do it.



Burke holds both a BSc. degree in Computer Science as well Certification in Search Engine Optimization and Marketing Strategies. He regularly publishes The ACE! newsletter, in which he shares his experience and methods of 'what works' with others. Burke can be contacted by his main website http://www.altacanweb.com or at http://www.the-ace-ezine.com.


Hexadecimal Color Notation on the Web

Written by Stephen Bucaro


Continued from page 1

RGB Triplet for Cornflowerblue

color dec hex red 100 64 green 149 95 blue 237 ED

We could then specifyrepparttar color of text within a span usingrepparttar 132469 hexadecimal notation as shown below.

<span style="color:#6495ed;">Text</span>

Note that when we indicaterepparttar 132470 use of hexadecimal notation by placing a pound (#) sign in front ofrepparttar 132471 number, and we don't use commas to separaterepparttar 132472 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'srepparttar 132473 next number after CE? That would be CF. what'srepparttar 132474 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.

---------------------------------------------------------- Resource Box: Copyright(C) Bucaro TecHelp. To learn how to maintain your computer and use it more effectively to design a Web site and make money onrepparttar 132475 Web visit bucarotechelp.com To subscribe to Bucaro TecHelp Newsletter visit http://bucarotechelp.com/search/000800.asp ----------------------------------------------------------

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


    <Back to Page 1
 
ImproveHomeLife.com © 2005
Terms of Use