Posts Tagged ‘nofollow’

Free Link Building from a PR5 Web Site is Back!

the web link building Free Link Building from a PR5 Web Site is Back! image

A couple weeks ago, I deactivated the link love plugin here on my website then I explained my decision why I deactivated the nofollow in another article and with the help of a great graphic from Josh, I think I got my point across. Link building only works if the links are genuine, remarkably since deactivating the plugin I’ve seen a tremendous drop in comments (both SPAM and otherwise) but not a noticeable trail off of traffic to the website.

90% of the comments on my websites appear to be made by roughly 1% of my visitors.

The problem is that genuine comments tend to get lost and too many commercialized links slip through the cracks, after all working on my blog is a part time endeavor as I do actually maintain a full time job outside my blogging activities. The other problem is that while giving away free nofollow links to some wonderful websites is rewarding on a personal level, there’s no true incentive for me to keep it up which is what’s led me to deactivate the link love plugin and make the vast majority of the links on my website nofollow, including links to much my own content. 

By ensuring the majority of links on my pages are now nofollow, it provides those links which I do want to promote significantly more value with regards to PageRank.

How PageRank Works

Simply put, PageRank is Google’s measurement of authority and it controls where you rank in the Search Engine Result Pages (SERPS). The higher your PageRank, the closer to the first page your website will appear on any given subject. While that’s an over simplification, the ideas are basically there. 

When a web page links to another website, Google considers it a vote for the second website but it divides the ‘vote’ between all the links on a webpage except for those marked as nofollow. Simply put, the PageRank transferred is equal to the total PageRank of a page, divided by the number of links not using a nofollow attribute.

On my home page for example, there are 172 links on my homepage including 139 links to links on my own website. Of the remaining 33 links on the page there are roughly 10 links to my other websites or profiles and another dozen are for websites who link to me. Since my website currently has a PageRank of 5, the 33 links each receive a vote of PR 0.151515… from my website. If I decreased the number of links to just 10, each page would earn a PR vote of .5 from my website.

Spending Your Credibility

There are several ways I choose to spend my PageRank, and make no mistake that linking to other websites ’spends’ PageRank. Every time your website links to another website, Google assumes that you are voting for it by actually transferring a small part of your own site value to the new website. If you’re linking to higher value websites, there is no effect but if you’re helping to promote lower ranking websites Google counts your vote as your willingness to lose some authority while boosting another websites credibility. This process helps ensure link farming is discouraged while link swapping between genuine and reliable websites is encouraged.

Who I Link To

When I deactivated the Link Love plugin a couple weeks back, I was surprised by the reaction of a few commenters who’d assumed that my willingness to give a free PR5 link was something they simply had the right to have. In truth, nobody has the right to have links, not just from my website but from any website. I struggle everyday to earn quality links and honestly assume that everybody else does too. So who do I link to and how can you get a free link from my PageRank 5 website to yours? 

Write a Guest Post

Take the time to write a guest post here on thisismyurl.com like Casper Christensen and build your website traffic by letting my readers know about your website. If thisismyurl.com isn’t your cup of tea, perhaps you’d enjoy writing a piece for one of my other websites?

Feature me as a Writer

A new section of my website called “What I’m Writing” can be found on the footer of every page and features a list of ten recent articles that I’ve written for other websites including my own.

Link to my Articles

If you’ve found an article interesting or a plugin useful, include a link to the posting here and find yourself included in the nofollow free Who’s Linking section on the bottom of every page. That’s where I list genuine, nofollow free Pingbacks to articles here on my website.

Do Something Amazing on Your Blog

Every week (sometimes more often) I write a summary article of what I’m reading on the web today, it also appears in the footer of my website and usual features a half dozen great links to wonderful articles I’ve enjoyed reading this week. It’s a great way to promote yourself.

If you’d like to learn more about how the PageRank tool works, I would encourage you to visit Ian Rogers great article on the subject.

Hyper linking in Dreamweaver

HTML is all about something called Hyper Linking. Actually, that’s what the first two letters of HTML pretty much stand for … Hyper Text Markup Language but what does it actually mean? Well, oddly enough us geeks are not all that tricky to understand, give us a beer mug shaped like Yoda’s head and let us string together a few acronyms and we’re happy.

Hypertext is text on a page that contains a Hyper Link

A Hyper Link is a piece of text or graphic which links to another document. When a user clicks the Hypertext, they follow the Hyper Link to the new document. Not brain surgery but I completely understand how most people would never need to know that.

Using Hyper Links in Adobe Dreamweaver is, for the most part dead simple. To insert a hyperlink into your Dreamweaver document, simply ensure you are in Design mode and select the text you want to make a hyperlink. Next, using the Property toolbar, type the website address you’d like to link to.

How to make a hypertext link in Dreamweaver

How to make a hypertext link in Dreamweaver

There are actually several things you can do with a hyperlink, called protocols. Most people only ever know about the http:// protocol (the Hyper Text Transfer Protocol) but there’s also a ton of other protocols people could use including the https://, ftp://, mailto://, gopher:// and of course the nntp:// protocol. If you have no idea what these are, congratulations … you’ll almost never need to care in your life unless you’re a hard code web developer.

Once you’ve added an http:// link using Dreamweaver you can also force the clicked link to open in a new web browser simply by adding the phrase _blank to the Target field of your property bar. There are a couple of other neat tricks with anchor tags people should be aware of, but to accomplish them we’re going to have to switch to Code view in order to see the following code:

[source lang="html"]<a href="http://www.thisismyurl.com">This is my Hypertext.</a>[/source]
In addition to the href value (where the click will go), you can also add:

  • accesskey to make the link a keyboard shortcut
  • class to assign a CSS class
  • dir (rtl or ltr) to make the text run right to left or left to right
  • id to make the anchor text have a proper name
  • lang to assign a language value
  • style to format the tag
  • tabindex to index the tab order for the link
  • title to assign a title tag
  • rel for the link relationship.

Of these I would recommend most links on a website have an href value to show where people should go, an ID if it’s a critical link, a rel for defining relationship values and the title for SEO value. Typically then, a link should look like:

[source lang="html"]<a rel="nofollow" title="My Great Website" id="mainlink" href="http://www.thisismyurl.com">This is my Hypertext.</a>[/source]

Absolute Paths vs. Relative Paths

One of the great debates in web publishing is the choice between using absolute paths vs. relative paths. An absolute path is one which is mapped completely to the final destination (http://www.thisismyurl.com/tutorials/placing-page-content-in-adobe-dreamweaver/) vs. one that is linked relative to the document you’re currently reading (../placing-page-content-in-adobe-dreamweaver/) the main advantage of an absolutely path is that it’s locked, while the main advantage of a relative path? That’s it’s relative … in the end, it doesn’t matter so long as the link works.

This tutorial is part six in a ten part series.
  1. Preparing a website in Adobe Dreamweaver
  2. Building your first Dreamweaver Template file
  3. Structuring your website with Adobe Dreamweaver
  4. Improving the common elements in Dreamweaver
  5. Placing page content in Adobe Dreamweaver
  6. Hyper linking in Dreamweaver
  7. Working with Images in Adobe Dreamweaver
  8. Adding Cascading Style Sheets with Dreamweaver
  9. Putting your website on a remote web server with Adobe Dreamweaver
  10. Adding Google Analytics to your Dreamweaver Template

Why I use nofollow even though I hate it.

Comments Off

There’s an attribute that we can assign to the anchor tag called nofollow, it was introduced a while back by Google and has been stirring up trouble ever since it arrived. It’s designed to help stop comment spam but lots of people are not entirely sure that it works.

The nofollow attribute works by telling search engines not to influence the PageRank of my site by the comments left by others. Now, that doesn’t sound so bad until you really stop to think about it because I blog on a lot of really great websites and I want some of those people to influence my rankings, I also want to influence the rankings of others.

So then why use it? Until we have a better way of controlling comment spam, it’s the best way.