我如何使用字体真棒图标作为链接?

时间:2014-10-25 19:44:32

标签: html

我在网站上使用了fontawesome图标。我想添加一个指向这个图标的链接。

例如:当有人点击谷歌图标时,谷歌页面应该会在新窗口中打开。

<div id="GooglePlus">
	<i class="fa fa-google-plus"></i>
</div>

href="http://google.com" target="_blank"

我怎样才能将这两件事结合起来?

1 个答案:

答案 0 :(得分:1)

试试这个:

<div id="GooglePlus">
    <a href="http://google.com" target="_blank"><i class="fa fa-google-plus"></i></a>
</div>