Is this the proper HTML code for an anchor to link an article back to my site. <a href="www.howtocrete.com"></a> that will be placed inside the authors box if not please let me know the proper HTML code for an anchor text that will link an article back to my site. Thanks,
You would need to put in the anchor text in the middle, so it's like the following: <a href="www.howtocrete.com">ANCHOR TEXT GOES HERE</a> Code (markup):
yeah you guys also failed to mentioned that you need HTTP there! <a href="http://www.whateversiteyouwant.com">anchor text here</a>
Here are a bunch of useful sites for you: http://www.w3schools.com/html/html_primary.asp http://www.htmlcodetutorial.com/
yeah it was such a basic question I almost didn't even see what he was asking for until i took a second look.. take care bud
additionally it would be beneficial to put the title tag in if it is allowed: <a href="http://www.whateversiteyouwant.com" title="anchor text here too">anchor text here</a> Code (markup): MAtt
This is the correct tag <a href="http://www.whateversiteyouwant.com">anchor text here</a> There are various other ways to improve the <A> tag, so I guess you should take a look at some online HTML tutorials.