Skip to main content

Adding A Link To Your Blog Post, Part 2

Adding links, in blog post text, is one of the most basic tasks in creating hypertext content - and it may be one of the most subtly misunderstood too. Like the inability to add a link using the Blogger Post Editor, the ability to correctly specify the link target is frequently seen
I created a standard HTML link
<a href="www.website.com">Link</a>
but when you click the link Blogger turns the link into this
blogaddress.blogspot.com/www.website.com
What is going on here?

Some bloggers do not understand HTML / HTTP syntax, and that's the problem here.

If you specify a link target as "www.website.com", most hypertext content editors will qualify the target with two elements.
  • The protocol, i.e. "http://".
  • The base URL of the website being edited, i.e. "blogaddress.blogspot.com".
giving you
blogaddress.blogspot.com/www.website.com

Instead of typing
www.website.com
type the link target as
http://www.website.com
and you'll be OK.

Comments

Popular posts from this blog

Adding A Link To Your Blog Post

Occasionally, you see a very odd, cryptic complaint I just added a link in my blog, but the link vanished! No, it wasn't your imagination.

What's The URL Of My Blog?

We see the plea for help, periodically I need the URL of my blog, so I can give it to my friends. Help! Who's buried in Grant's Tomb, after all? No Chuck, be polite. OK, OK. The title of this blog is "The Real Blogger Status", and the title of this post is "What's The URL Of My Blog?".

Embedded Comments And Main Page View

The option to display comments, embedded below the post, was made a blog option relatively recently. This was a long requested feature - and many bloggers added it to their blogs, as soon as the option was presented to us. Some blog owners like this feature so much, that they request it to be visible when the blog is opened, in main page view. I would like all comments, and the comment form, to be shown underneath the relevant post, automatically, for everyone to read without clicking on the number of comments link. And this is not how embedded comments work.