PHPLover
PHPLover

Reputation: 12957

How to use <b> tag and <a> tag together in HTML?

I've following text in my webpage:

<a href="http://www.google.co.in">Search Engine</a>

I want this hyper text tobe in bold. At the same time this hyperlink should work. How to use <b> tag with <a> tag? Also I don't want to use CSS for making the text bold. I want to use only <b> tag for making the hyperlink text bold.

Upvotes: 4

Views: 28634

Answers (2)

this should do just fine

<b><a href="http://www.google.co.in">Search Engine</a></b>

DemoFiddle

Upvotes: 2

Royi Namir
Royi Namir

Reputation: 148524

Is that what you want ?

Your link is inside a body tag so what's wrong with b tag ? :-)

<b><a href="http://www.google.co.in">Search Engine</a></b>

Also

<a href="http://www.google.co.in"><b>Search Engine</b></a>

Question : But wouldnt it display : <b>Search Engine</b> instead of Search Engine ?

Answer: No. it won't , it would have been if you html encoded the < and >.

(you could have tried it yourself ;-))

Upvotes: 6

Related Questions