" />

Wednesday, May 24, 2006

CSS Styling

Because search engines don't read cascading style sheets (CSS), they are great for optimizing the html pages for search engines, while changing the look of the page.

For instance, you might want to place emphasis on a chunk of text by denoting it with an H1 tag, however, who wants to see 20 point text on their page. You can simply create a style for the H1 tag as follows:
<style type="text/css">
h1
{
font-size: 12px;
font-family: Arial;
color: cccccc;
}
</style>

By doing this you are ensuring that all your H1 tags are now 12 pixels in size with Arial font and grey in color. However, you might find a hurl when you want to simply add your h1 tag to text that is merged in as part of a sentence. Don't panic, you can still place the emphasis for the search engine and maintain continuity in your text by simply adding a display:inline tag to the previous CSS code. The modified code will look like:
<style type="text/css">
h1
{
font-size: 12px;
font-family: Arial;
color: cccccc;
display:inline;
}
</style>

This display:inline code simply forces all text to remain in the same line. If you really want to play it safe don't forget to throw in a margin:0; and padding:0; for good measure. This will ensure that there is no extra space surrounding the text enclosed in the h1 tag.

The bottom line is that you can design a pretty attractive page while placing the correct emphasis on your keywords. Search engines look for this emphasis to place proper relevance on the text you are presenting. This CSS trick works for all tags, h1, h2, h3, ..., h6, as well as, p, br, body, and all other relevant html tags. One final note, if you want to apply CSS to a particular table, row, or column, then you can simply denote them with an id and apply your CSS base on this by using the hash mark followed by the id given in your stylesheet like this: #myid.
Digg This Del.icio.us Slashdot

Friday, May 19, 2006

More on Intellectual Property

Microsoft is great at marketing their products. They're even greater at marketing others' products as their own. This is the case today according to a PC World article, where Symantec is accusing the Redmond Giant of stealing their intellectual property.

Turns out that Microsoft had bought the rights from Veritas, a company that Symantec acquired last year, to use the products in its Windows Services. Microsoft release a statement stating "these claims are unfounded because Microsoft actually purchased intellectual property rights for all relevant technologies from Veritas in 2004." The case here is that Symantec has found themselves in trouble as better and cheaper products have hit the market. However, Symantec does have a leg to stand on here as the 1996 contract prevents Microsoft from developing products that compete with the Veritas software, in this case Veritas is now Symantec, a slight technical violation.

The bottom line is that the courts have seen a lot of this type of cases recently. First it was the RIM saga, then the net neutrality issue, and now this. When are the courts going to put a stop to this. All this battles certainly don't do any good to improve our fallen economy. It simply makes people like me sick to their stomachs. When is enough money enough?
Digg This Del.icio.us Slashdot

Tuesday, May 09, 2006

Bad manners carry on to the Web

"Didn't your mom teach you that peeping was not polite." This is something that should be told to SalesGenius, a piece of software now being marketed to attract companies who want to spy on their visitors so that they can pitch a good game.

Basically, the Genius software, produced by Salesgenius, allows a salesperson to send a potential client a link inviting them to visit a particular Web page. The trick here is that the link directs them to a proxy server residing at the SalesGenius site. This in term monitors which pages the user visits on the site, allowing the salesperson to follow up with targeted products now that potential client has been marked. The salesperson can now focus on exactly the products that person visited the most depending on the duration of how long the person stayed at a particular page or how many pages within a particular product they saw.

The bottom line is that although this appears to be crossing the line, it isn't different than when a person visits a store and a salesperson walks behind them trying to show products. This happens all the time, I walk into a store and I see a salesperson watch from the sidelines, as soon as I choose interest on a product they are quick to approach to offer others that may serve as companions. Similarly, when you pull into the lot of a dealership, typically a salesperson is quick to approach and jump into a sales strategy. Would I say that this is a great product? The answer is easy, YES! Every business goal is to make money and as I see it, they are simply using a tool to help them cash in. If you want to avoid being spied on, it is easy, look at every URL before you click onto a site, if it doesn't look right, then trust your instincts.
Digg This Del.icio.us Slashdot

posted by Death is Forever at 0 Comments Links to this post  

Friday, May 05, 2006

Benefiting from Others

Once in a while someone has an idea that completely and utterly relies on someone else's, though not consider copyright infringement, it crosses the boundaries of intellectual property.

Intellectual property is a topic that has been argued long and hard for the past couple of years. Peer to peer sharing software and other technological advances have set the stage for this long debate.

However, this is not the case for Google Fight. Google fight is a site devoted to compare the rankings of a particular person against another based on Google searches. The site has a very clean and simple UI in which the user types in the two names to be staged for the fight. Once the fight starts a simple movie clip animation depicting the two characters fighting is presented, followed by the results. Though this site makes use of Google search power, I believe that it is very entertaining and creatively clever.

The bottom line is that there is nothing wrong with utilizing someone else's work to bring a new idea to life. However, the boundaries of intellectual property can be easily crossed. Be sure that when you are borrowing from someone you give full credit to the source and try your best to secure permission from the original author before posting your creations to the World Wide Web.
Digg This Del.icio.us Slashdot

posted by Death is Forever at 0 Comments Links to this post