Simple HTML for Formatting Blogger Comments
Wed 30 Aug 2006Sherdie, fellow Brisvegas blogger, has asked for some tips on adding styles to Blogger comments. Many bloggers have tools for adding formatting to their posts, but not their comments. I thought I’d post my answer here so that other bloggers can benefit as well.
We’ll cover just simple stuff, bold, italics and hyperlinks.
[Note to advanced web developers and XHTML coders: Nothing to see here folks. Move along. Corners (and some W3C XHTML validation rules) will be cut.]
When can we use formatting?
Good news: Usually Bad news: Not always.
Some blogging software and some blog owners can turn off HTML formatting. Sometimes you just won’t know until you try it. A good indication that you can use HTML formatting is if the comment form says something like…
You can use some HTML tags, such as <b>, <i>, <a>
What is a Tag?
Very simply, a tag is something enclosed in angle brackets <>. For example, <b> is the tag for “Turn Bold On”.
When your readers’ browsers (Internet Explorer, Firefox, whatever) encounter tags that they recognize, they will replace these tags with formatting.
Don’t forget the End Tag.
Note that each of the tags we are using here, work in pairs. That is, there is a Begin Tag and a corresponding End Tag which starts with a slash /. For every <b> (bold on), there must be a corresponding </b> (bold off). This is important.
Bold
Surround the text you want to appear in bold with <b> and </b> tags. Example, type this into the comment box:
Sometimes I just want to <b>shout</b>!
Readers will see this:
Sometimes I just want to shout!
Italics
Enclose the text you want to appear in italics with <i> and </i> tags. Example, type this into the comment box:
I thought, <i>Hang on a minute, Defrag!</i>
Readers will see this:
I thought, Hang on a minute, Defrag!
Hyperlinks
Including a Hyperlink in a comment is very similar to Bold and Italic. Hyperlinks use the <a> (for “Active”) tag.
Step one is to enclose the text you want to appear as a hyperlink with <a> and </a> tags. Example, type this into the comment box:
You should read <a>MikeFitz's post</a>
If you leave it at that, readers will see this. Note that the hyperlink doesn’t work yet:
You should read MikeFitz’s post
Step two is to include the address that you want to link to in the opening <a> tag. This is done by including href="" in the tag. Then place the address between the two "" characters. (The address is the thing that starts with http://. You probably already know that you can copy the address from the address bar at the top of your browser.)
For example, here we have added the href="":
You should read <a href="">MikeFitz's post</a>
Finally, here it is with the address placed between the two "" characters:
You should read <a href="http://mike.brisgeek.com/2006/08/30/simple-html-for-formatting-blogger-comments/">MikeFitz's post</a>
And here’s what readers will see:
You should read MikeFitz’s post
Bold and Italics (Walking and Chewing Gum)
Bold and Italics can be combined provided they are nested correctly. Example:
I shouted: <b><i>Look Out!</i></b>
Readers will see:
I shouted: Look Out!
This is an example of incorrect nesting. The </i> should come before the </b> Don’t do this:
I shouted: <b><i>Look Out!</b></i>
Bold, Italics and Hyperlinks (Walking, Chewing Gum and Talking to your Mother on your Mobile)
Here’s a more complex example where correct nesting is important:
One of my favourite books is
<a href="http://www.awprofessional.com/bookstore/product.asp?isbn=0201633612&rl=1"
title="Addison-Wesley website">
<i><b>Design Patterns</b>
: Elements of Reusable Object-Oriented Software</i>
by Gamma, Helm, Johnson and Vlissides</a>.
Readers will see:
One of my favourite books is Design Patterns: Elements of Reusable Object-Oriented Software by Gamma, Helm, Johnson and Vlissides.
and Finally
Hopefully my fellow bloggers will find this information useful when commenting.
If you found it useful, please let me know or leave a comment. If you find an error, let me know about that too.
Happy Blog Commenting — Mike

August 30th, 2006 at 14:29
Well, MikeFitz, I feel more learned now. In fact, I applaud you.
*hopes she didn’t bugger it up*
August 30th, 2006 at 15:09
Well done, Sherdie.
Are you sure you haven’t played this game before?
August 31st, 2006 at 10:08
You should have seen how long it took me to do that. I’ve always been of the trial-and-error school of html (aka the google and wikipedia school) so it’s nice to have it all set out. Also, didn’t know that nesting was important. So all silliness aside, thank you!
August 31st, 2006 at 10:55
Excellent overview, Mike, without getting bogged-down in unnecessary detail.
September 2nd, 2006 at 16:07
Oooh, this will make me feel so much more celverererer when I make comments now! I won’t show off like Sherdie (although if she hadn’t done it I would have). Thanks for the tips!
September 2nd, 2006 at 16:20
Dion: Thanks, hopefully I found the sweet spot between too much and not enough.
Miff: Happy to help!
October 9th, 2006 at 1:04
Thanks a lot for posting this- found it through Google. Very helpful.
January 12th, 2008 at 10:13
Thanks, John. You’re welcome.
January 17th, 2008 at 8:02
Ah - thanks to Google eh…
Just what I needed to know thanks Mike… Cheers
Belongum
January 18th, 2008 at 1:26
You’re welcome, Belongum. Thanks for dropping by and commenting. This post seems to get quite a few visitors via Google.
March 11th, 2008 at 9:33
Hello,
I have a question: do you have the code/instruction for adding this “leave a reply” section for each post in Blogger?
March 11th, 2008 at 10:15
G’day Kimsta. This is a self-hosted WordPress blog backed by a mySQL database. I’m pretty sure the code you are after is part of the WordPress software which is available free.
However, I don’t think out-of-the-box Blogger allows you to enter comments on the same page as the post. Instead it takes readers off to a separate https:// page.
Even if we could modify a Blogger template to include this “Leave a Reply” form, I doubt Blogger would give our code permission to write to the database where comments are stored. Interesting idea though.
Cheers — Mike
March 11th, 2008 at 11:17
Thanks for the reply, Mike. How is Beautiful Queensland today? I’m from Melbourne
March 11th, 2008 at 11:26
28°C, gentle breeze, dappled sky, you wouldn’t like it. Victorians should stay where they are and be happy with their lot.
April 17th, 2008 at 23:42
Thanks for the tips. I was trying to edit some comments in my own blog, and then realized I had turned off all the formatting. Now happy again, thanks for the tips.
April 24th, 2008 at 3:54
Just testing the italics command. Thanks.
April 24th, 2008 at 9:51
You’re welcome, Susan.
Chris, congratulations! You italics skills are now second to none!
April 28th, 2008 at 3:30
I did it! Maybe now my blog will get noticed a bit more. Thank you.
May 17th, 2008 at 2:53
test
google
test
google
July 18th, 2008 at 0:49
Absolutely great - thank you! Easier than I ever would have thought. Mind if I practice?
September 4th, 2008 at 10:17
Thank you. Good stuff and helpful for a rookie like myself.
September 25th, 2008 at 23:01
Great information - just what I was looking for! Thank you!!
September 26th, 2008 at 23:25
I have been trying to figure out how to put links to blog posts I wanted to reference in comments for AGES. This is a life saver. Thanks!!
October 13th, 2008 at 0:56
I am looking for a way to add such tags as a in comments. Any idea how I can do it?
October 20th, 2008 at 0:07
“You can use some HTML tags, such as <b>, <i>, <a>”
The words, “such as” lead me to believe other tags I can use i the when commenting back. Are there other tabgs I can use? What are they?
Thanks.
December 13th, 2008 at 2:37
i want to try this because I couldn`t make it work!
December 16th, 2008 at 1:02
Mike
Thank you for your very usable information!
I’ve always wondered how the tech experts were doing that!
I will use it for my Positive Affirmations based website! (Hope that works!?)
Thank you again,
Johnny London
December 16th, 2008 at 1:40
Hi Johnny,
I see you also added the rel=”nofollow”. Are sure you are a newbie at this?
December 16th, 2008 at 23:23
Thank you. Good work!
December 22nd, 2008 at 11:29
This is good news!
Thanks,
Good News Economist
January 26th, 2009 at 5:39
Thanks a bunch for posting this information. Exactly what i was looking for.
March 21st, 2009 at 1:33
Thanks…I was able to hyperlink in my comment!
June 7th, 2009 at 8:17
Thanks, for this article I can now link in Blogs…Finally
Thanks,
Radko Christmas Ornaments
June 11th, 2009 at 17:25
Thanks Mike, you explain this so well, I often get asked how to hyperlink comments, and it’s difficult to explain. I’ll be sending them to you in future.
June 11th, 2009 at 22:54
Thank you. Now I can look as cool as the next sweet talking guy.
Here is my first attempt…
Andy Sewina passed this on to me.
August 28th, 2009 at 12:25
I’ve been wanting to insert hyperlinks into blog comments for a long time. Wish I had found you sooner! Thanks.
October 3rd, 2009 at 21:45
Nice article.
May I ask, is there any way to change allowed tags in comments box?
(In wordpress I know there is, so I ask for blogger).
Some wordpress blogs allow: object, embed, and img tags in comment box so yoy can embed a youtube video as a comment!
What about blogger?
Thanks.
October 7th, 2009 at 15:32
ok what the heck,
Im folloing exactly what you say but my super awesome comment isent leading to superawesomedating.com when i use it on other sites.
Either the link is just highlighted but is not clickable OR it creates a hyperlink to (for example) www.domain.com/post-title/comments-page-2/superawesomedating.com which ends up as a page not found error.
Please help! Feel free to email me.
October 7th, 2009 at 16:50
Hi David,
Your link is missing the “http://”
Do this: <a href=”http://www.domain.com”>super awesome</a>
NOT this: <a href=”www.domain.com”>super awesome</a>
Without the “http://”, your link is interpreted as a page on the current site.
Cheers — Mike
October 15th, 2009 at 6:21
Hi Mike,
Thank you for such a great explanation! Your article helped me to place a Hyperlink in the Blogger comment form.
Cheers buddy!
November 11th, 2009 at 1:38
Thanks - I was looking for that.
And a test to see if I got it right!!
If you use xTuple and want your database in the cloud - then we have a hosted solution
November 11th, 2009 at 7:45
Hi Mitch,
Unfortunately your hyperlink contained too many double-quotes around the hyperlink address.
You said:
we have a <a href=””http://www.opensurgegroup.com/host/host.html”” rel=”nofollow”>hosted solution</a>
Try this instead:
we have a <a href=”http://www.opensurgegroup.com/host/host.html” rel=”nofollow”>hosted solution</a>
November 20th, 2009 at 17:02
Thanks for the info. Its good to know. I’ll have to share a link on my blog: www.ninehats.com
November 20th, 2009 at 21:33
I wish it would allow the <ul> tag so one could show lists in comments.
December 5th, 2009 at 14:19
can i insert a picture in the comment?
December 28th, 2009 at 17:38
hello sir.
can you tell me how to post an HTML comment (for example, image from photobucket.com) then below the image, you will write your message without being hyperlinked..
that’s really my problem now..
can you tell me what to enclose my text ?
thank you very much.
God bless.
December 28th, 2009 at 23:37
Hi Freann, Something like this?
A picture with a caption.
Note that not all blogs will allow images, but if they do, here’s what you need for the image…
<img src=”http://url_of_your_photobucket_image” />
Your caption is then just plain text on the next line.
Cheers — Mike
December 30th, 2009 at 23:22
Thank you So Much. I have been Searching for this.
I used it on my website’s comment Casino Galore
January 2nd, 2010 at 3:01
Hi, Thanks a lot, dear Mike, for the wonderful tutorial on HTML for formatting Blogger Comments. I’ve just tried in in my blog and it seem to work fine.
I’m just trying it out, here, too, just in order to check up. Hope, you don’t mind.
NETAJI GAVE FIRST FREEDOM TO INDIA IN ANDAMAN
January 2nd, 2010 at 3:04
Woooooooow… Look at that…!
It does work, Mike! Thanks a ton, again, for the excellant tutorial! Wish you and your family a mighty Happy, Peaceful and Prosperous New Year 2010…! Cheers!!! :))
Shrinath Vashishtha
Port Blair
Andaman & Nicobar Islands (India).
January 6th, 2010 at 14:56
Thank you! Your post is the first that popped up when I searched “hyperlink in blogger comment”, and I have referenced your instructions multiple times already. Finally, I know how to put my website address in as a link (www.thegiftedblog.com) and not plain text!
Really appreciate it.
January 31st, 2010 at 14:33
I’m testing this out….this was helpful!
February 19th, 2010 at 1:48
thanks for the great tutorial Mike
Came here via google, by the way.
The tutorial works because you tell people exactly what to type. If I were to try and relay that to some one in a comments box it wouldn’t work because the tags would disappear (as they’re supposed to). Any idea how to get around that? Thanks again.
February 19th, 2010 at 3:11
G’day mdix,
Trick is, you cannot use < or > in a comment box because they will disappear if html is allowed.
Instead of < use <
Instead of > use >
So, a <b> tag looks like this <b>
March 2nd, 2010 at 12:46
Do you have a great trick for sticking a hyperlink in your blogger profile name?
March 5th, 2010 at 22:29
Mike,
Could you tell us if it is possible to format the text by justifying it on both the left and the right sides?
Thanks.
March 17th, 2010 at 13:12
Have always wondered about this. lol. Thanks for explaining it simply and not making me feel stupid for not figuring it out myself.
April 14th, 2010 at 14:03
Thanks for the tips

Just a test with a counter
May 6th, 2010 at 3:03
flaubert-poetrywithme.blogspot.com
p
May 18th, 2010 at 4:30
Nice one. Short and sweet. HELPFUL!!!
May 30th, 2010 at 14:59
Thanks so much! This is very helpful to me.. I was making comments on a post I’ve made but it turned out its not a link.. Super thanks!!
June 19th, 2010 at 20:38
I give below my Link to Naisaiku in my Blog/Post
http://saraswathan.blogspot.com/2010/06/naisaiku-sweet-rain.html
July 15th, 2010 at 7:41
Thanks for the info on adding hyperlinks to comments
Have a lucky day.
Vanessa
http://vanessa-morgan.blogspot.com
July 17th, 2010 at 6:11
i have a blogger blog and i want to add html so that ANYTIME someone leaves a URL in their comment, blogger AUTOMATICALLY knows there should be a hyperlink there and makes it a hyperlink! (so the commenter does not have to do anything on his/her end). can i do this???
thank you!!!
July 22nd, 2010 at 23:53
let me try it: order mildes olivenöl here… thanks for the simpel guide, really helped me
July 23rd, 2010 at 19:03
Mike,
I’ve been trying to follow another set of instructions I found on Google, to do exactly this, but also leave anchor text. The way i read it is that one pasted the code in to the website box, at the start of the comment, but it has never worked!
It seems, that I now have the clearest set of instructions I could hope for so, if you don’t mind, I’m going to give it a go now……….
Okay, blah, blah, blah I’m going to talk about heating oil, because that’s what our company supplies in the UK, and use the keyphrase I was hoping to use which is heating oil Harrogate and then I prey for the html gods to smile on me
Thanks, Q.
July 26th, 2010 at 19:51
Mike,
You are a ‘Google Guru’, an ‘HTML Hero’, a ‘Tag Tyrant’ a….a…..well, you get the idea. Thanks for your clear instructions and allowing me to practice on your blog. I now know where to come for great advice!
Many thanks,
Q.
July 29th, 2010 at 3:24
This was good info for a newbie like me. Thanks,
Dan Lamas
Making Money With Affiliate Marketing
August 19th, 2010 at 4:58
Thanks, this is really useful!
I have been using this to post around my new Photography Website
October 1st, 2010 at 7:39
What I typted: Wow, this is <b>just what I needed!</b>
What you see: Wow, this is just what I needed!,/b>
December 9th, 2010 at 15:14
this is for practice to see if i got it, thanks for the info.
Auto Glass Dallas Thanks
December 22nd, 2010 at 15:59
This is GREAT!
Thank you so much for sharing. (testing)
January 7th, 2011 at 14:20
Thanks… This will be quite use full.
http://inftec-dilshanuom.blogspot.com/
January 13th, 2011 at 7:26
Great post, such a simple thing to do but executed correctly is a great tool. Just created my first hyperlink in a comment to my blog post
February 23rd, 2011 at 0:23
Hi Mike I would like to know how to insert hyperlinks in a comment linking to a external window (pop up window).
Tks
February 23rd, 2011 at 9:22
Hi David, The trick is to include target=”_blank” in the <a> tag. EG…
<a href=”http://somewhereelse.com” target=”_blank”>
This will open the new page in a new browser window.
Note that the World-Wide-Web Consortium no longer recommends this. Older browsers will behave as you expect but newer browsers (and devices) may not. Also, many folks are annoyed by extra windows “popping-up”. Finally, more and more browsers these days include “pop-up blockers” which may stop this from working altogether.
March 7th, 2011 at 0:24
Hey, Mike, thank you for this help! I’ve always wanted to learn how to do this. You made it very easy.
March 22nd, 2011 at 4:00
Your guidelines are great. Overall the idea carmelo jersey is that one should write genuine comments, not only for a link back but also it should give some sensible feeling nets jersey.
March 30th, 2011 at 12:49
Thanks for this post. This was a big help.
April 6th, 2011 at 7:33
I had some problems with this on another blog. Lets try again now with your instructions.
My website is about the Love Poems by Rumi and I would like all readers to be invited to visit it and start reading rumi love poems and you will know what real, universal Love is all about.
April 22nd, 2011 at 5:33
lets give this a try
theartofbeingfashionable
May 22nd, 2011 at 0:47
The Book Buff: Book Reviews for Regular People
June 1st, 2011 at 21:54
i am testing it here
Technology website
July 8th, 2011 at 9:47
Trying this now …
well, now, anyway ….
July 21st, 2011 at 6:45
Thanks Mike, I am learning html and sometimes I get it and sometimes it goes out of my head. I will bookmark your site so I can refer whenever I need to.
July 21st, 2011 at 18:00
You’re welcome, River!
August 8th, 2011 at 22:06
FANTASTIC The penny drops, but slowly.
Check thesefab photos
Did I do it?
August 30th, 2011 at 8:48
I find that allowing HTML seems to attract spammers. They use the text above in their search string knowing they can leave a keyword link.
Comment Luv as well as a spam captcha seems to weed most of them out and keeps the comment section looking cleaner.
Just my opinion - I could be wrong.
August 30th, 2011 at 11:48
You are quite correct, Michael. This post in particular seems to attract a lot of spammers. I moderate all comments and report the spammers to Akismet.
September 14th, 2011 at 0:51
Thanks friend , I have a question: how to format text in comments (in WordPress) ?
Does it go the same way ?
Thanks
bs: what about colours ?
September 14th, 2011 at 2:08
Yes Sy-guy, the html for Wordpress comments is the same, provided html is allowed by the blog author.
As for colours:
Type this…
This is some <span style=”color:#f00″>red text</span>.
and your readers see this…
This is some red text.
September 29th, 2011 at 16:50
test for hyperlink
Button badge@mark angel : Button badge malaysia , Election badge malaysia , Fridge Magnet malaysia
October 2nd, 2011 at 0:40
Can’t Blogger create an RSS feed that allows us to show ALL of our comments posted on different blog posting? It would be great if visitors to my blogs could read right on the front page and on every page what others are saying about all stories I post, or even the most recent comments posted … that would drive more people to read the posts and comment more
October 9th, 2011 at 12:24
Hi Mike,
So, I came across your blog by Googling how to leave html in blog commenting, and I have to confess that I am a complete dummy when it comes to understanding HTML as it relates to leaving a comment on a blog. If a blog is nofollow, but they allow html in the comment, does that mean you can leave a link and it will be followed? I’m sorry to ask such a newbie question, but I really am trying to learn how to do commenting the right way, without offending the blog owner. Thank you for your time.
October 26th, 2011 at 12:57
very nice explaination
October 27th, 2011 at 20:42
thanks a lot, will your system work on all comment boxes, apart from blogs.
November 2nd, 2011 at 11:19
Hi Mike
Thanks, you explain this so well. It really help me
November 19th, 2011 at 15:14
Just testing to see if I know how to use a link Accident on 95
November 29th, 2011 at 17:44
Thanks for this, Mike.
I keep coming back here to refer (actually to copy) the html codes for my use/comments. I’m very poor at memorizing codes.
my ramblings
and my photopages
December 17th, 2011 at 18:59
that was so helpful..
December 18th, 2011 at 16:44
i want to make comment box like your comment box …plz help me
January 9th, 2012 at 10:44
Mitt Romneywill cost the republicans the election
Mitt Romneywill cost the republicans the election
———————
Comment by MikeFitz:
I was nearly going to mark this as spam, because that’s what it is. It doesn’t relate at all to the technical topic being discussed above.
However, I’ll leave it here because this gives me an opportunity to correct it…
It’s not Mitt Romney, nor is it Ron Paul (the link above goes to ronpaul2010.com) who will cost the republicans the election. Rather, it is the Republicans’ general lack of empathy for their fellow man and our environment which will cost them the election.
January 9th, 2012 at 19:30
Check out my site for League of legends updates such as new League of legends skins and League of legends guides.
Just testing this out.
January 9th, 2012 at 22:18
Mr lolupdates, I was nearly going to say, “Are you sure you haven’t played this game before?”
But then I noticed that you have an unnecessary “http://www.” at the beginning of each of your links.
January 10th, 2012 at 3:27
Nice i will try it. new docomo tricks 2012
May 17th, 2012 at 12:28
About time I bookmarked this post, since I keep referring back to it again and again and again…
This will be useful, especially for remembering how to link stuff!
August 8th, 2012 at 17:27
Thanx u for nice post. Now i can add link on my comments.
August 15th, 2012 at 18:59
Hey thanks , now i can add many comments on http://www.carbonated.tv/sports
August 19th, 2012 at 4:04
Hi Mike: Hope I’m doing this correctly - not used to Blogs. Trying to catch up on your comments and observations about the upcoming provincial election campaign in Quebec. I reside in Gatineau and have been a resident of this province for 60 years yet the separatists have never, ever made anglophones welcome here. They do not have any appreciation for our efforts to live peaceful and cooperative lives and they never will. They would be surprised to hear how many of us would fight to retain our Canadian citizenship should they ever try to remove us from Canada. You speak of partitioning off Montreal but there are many other areas of Quebec that will also be seeking partition should a vote for independence ever result in a yes vote. We need a new political party in Quebec that would stand up to these separatists and state loud and clear that we are willing to sign the constitution of Canada and are willing to work for a better life for all Canadians. They would be unpleasantly surprised how many votes this new party would receive as most of us in this area are sick and fed up with the whining and blackmail of the rest of Canada. Quebec is now so socialist (and I’m a Liberal by the way) that they are bankrupt and we can no longer afford all of these free programs and huge salary demands by the labour forces and unions. For heavens sake, a house painter earns just about the same amount of money as our doctors. What is wrong with this picture? We are becoming more and more communist each year with the government telling us where we can go to school, what language we can speak and what we can wear! Isn’t this how Nazi Germany started out? Don’t we ever learn?
September 3rd, 2012 at 14:26
Very nice and useful article, thank you very much for sharing with us.
cheer,
Nyoman
check out The Edublogger
September 9th, 2012 at 21:09
Testing:
Want to stay updated with the world? use :This new rss feeder.
September 12th, 2012 at 19:43
thanks mike, great article. Let me give it a try with my brazilian hammocks website
September 12th, 2012 at 19:45
thanks mike, great article. Let me try it with my brazilian hammocks website
September 23rd, 2012 at 0:31
Thank you!
Mrs. K’s Imperfect Journey
October 4th, 2012 at 15:21
Wow! It’s been quite a while I saw in blogspot hyperlinked comments like this. But, I didn’t know how easy it was. Although I am sure some bloggers will mark the comment as spam
… However, thanks for the tips, buddy 
- Visit My Technology and Gaming Tips
November 27th, 2012 at 2:45
I find it interesting that Blogger allows the use of the
<a>tag which permits all kinds of dangerous and spammy hyperlinks, but one cannot use the<code>tag.Blogger is used for all sorts of things from mindless rantings and pornography to political commentary and computer help. It makes it very difficult to explain typing commands without certain fonts or automatic formatting making the actual command unclear or unusable. For example:
ls -aor
dir /wwould become:
ls -a
or
dir /w
January 19th, 2013 at 0:21
Hello,
Thanks for tips and tricks.
It really help for beginner like me
Best Regards.
Itching And Burning Sensation
January 28th, 2013 at 17:55
Very helpful thank you so much.
Buy Academic Papers
January 29th, 2013 at 21:37
Very nice MikeFitz!! Awesome work man, thank for your valuable information.
February 5th, 2013 at 9:45
I wanted to thank you, this is really helpful.
March 23rd, 2013 at 14:51
thanks for this very helpful article
April 4th, 2013 at 14:08
I have been wanting to do this for ages, but finally took the time to do a google search today. This was the first hit I got, and it worked.
Thank you.
April 10th, 2013 at 8:38
Hello friends this is nice and usefull information.
Do u want read my first x experience
www.storyx9.blogspot.com
www.storyx9.blogspot.com