根据您的参考,您有:
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet'>
具体来说,就是这个href=部分。
但是,在您的完整html下是这样的:
<link src='http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet'>
您是否尝试过更换src=与href=您的全HTML变成这样?
<link href='http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet'>解决方法
最近,我一直在开发此网站,并试图在其中添加超棒的字体图标,以便其可扩展。
问题是他们没有露面。
看一下HTML:
<a href='https://www.6hehe.com/wenda/20736.html#'>Get a FREE Quote <i class='fa fa-arrow-right'></i></a>
要么
<li><a href='https://www.6hehe.com/wenda/index.html'><span class='fa fa-home fa-2x'></span>Home</a></li>
我确实把样式表引用放在了头上。
我不知道为什么他们没有出现。
这里是参考:
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet'>
好了,这是完整的html:
<head> <meta charset='UTF-8'> <title>Retrica</title> <link src='http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet'> <link href='https://www.6hehe.com/wenda/style/normalize.css' rel='stylesheet' type='text/css'> <link href='https://www.6hehe.com/wenda/style/bootstrap.min.css' rel='stylesheet' type='text/css'> <link href='https://www.6hehe.com/wenda/style/main.css' rel='stylesheet' type='text/css'></head><body> <header class='top-header'><div class='container'><!-- Start Container --> <div class='row'><!-- Start Row --><div class='span3'><!-- Start Span3 --> <div class='logo'><img src='https://www.6hehe.com/wenda/img/Retrica.@2x.png' alt='' height='13,5px'></div></div><!-- End Span3 --><div class='span9'><!-- Start Span9 --> <nav class='main-nav'> <!-- Start Nav --><a href='https://www.6hehe.com/wenda/20736.html#'>Get a FREE Quote <i class='fa fa-arrow-right'></i></a><ul class='nav-ul'> <!-- Start Unordered List --> <li><a href='https://www.6hehe.com/wenda/index.html'><span class='fa fa-home fa-2x'></span>Home</a></li> <li><a href='https://www.6hehe.com/wenda/20736.html#'><span class='fa fa-mobile-phone fa-2x'></span> Contact Us</a></li></ul> <!-- End Unordered List --> </nav><!-- End Nav --></div><!-- End Span9 --> </div><!-- End Row --></div><!-- End Container --> </header> <section><h1>The greatest way to contact those you love</h1><h3>In a way you don’t imagine</h3><a href='https://www.6hehe.com/wenda/20736.html#' class='btncta'>Register Now</a> </section></body>