Posts Tagged ‘Highlighting’

GOOGLE TOOLBAR

Tuesday, July 15th, 2008

Instead of going to Google.com each time to search, it’s much faster to have Google built into your browser. Several options:

* My preferred browser for PC or Mac is Firefox <getfirefox.com>, which already has built-in Google. You should download the free Googlebar extension <googlebar.mozdev.org> or the official Google Toolbar <toolbar.google.com> (the Google Toolbar also works on PC Explorer). Faster searches; pop-up blocker; highlighting; word find (go directly to a word/phrase on a page). Be sure to get the Cool Iris extension for Firefox, which lets you preview Google results.

Creating Glowing Web Page HTML Links

Monday, July 14th, 2008

You can create glowing hyperlinks within your web page.

This special effect will make your links appear to be glowing. Place the following code within your HTML where you would like your link to appear.

Glowing Text Link Example

<SPAN STYLE=”position:relative; width:200; height:25; filter:glow(color=#3A9DFA,strength=2)”>
<A href=”http://www.domain.com”>Glowing Text Link Example</A></SPAN>

Change the text indicated in “red” for customization.

Creating glowing web page links within your sales web pages is a great way to draw attention to your links by highlighting them. However, use this HTML code carefully, as you don’t want to confuse your visitors.

Highlighting HTML Web Page Links

Monday, July 14th, 2008

You can display your HTML web pageĀ  links in the color of your choice by adding the STYLE attribute to your HTML code.

Copy and paste the following code into the HTML portion of your web page where you would like the link to appear:

<A HREF=”http://www.yourdomain.com/” STYLE=”background:yellow; color:black” TARGET=”blank”>http://www.yourdomain.com/</A>

You can change the colors to whatever you’d like, but keep in mind, the text must be visible through the background color.

Highlighting HTML Web Page Text

Monday, July 14th, 2008

You can highlight your HTML web page text in the color of your choice by adding the STYLE attribute to your HTML code.

Example: Example of highlighted text

Copy and paste the following code into the HTML portion of your web page where you would like the text to appear:

<SPAN style=”BACKGROUND-COLOR: #ffff00″>Example of highlighted text</SPAN>

You can change the colors to whatever you’d like, but keep in mind, the text must be visible through the background color.