<button class="col-md-6">
<a href="#" class="btn btn-default btn-lg get-quote"><i class="fa fa-quote-left fa-fw"></i>Get Quote</a>
</button>
Don’t nest an <a>
in a <button>
. You won’t be able to click on the <a>
if you do so. Also, the col-*
classes are intended to be used by containers (like <div>
s), not things like buttons. You may want something like this:
<div class="col-md-6">
<a href="#" class="btn btn-default btn-lg get-quote"><i class="fa fa-quote-left fa-fw"></i>Get Quote</a>
</div>
"http://api.forismatic.com/api/1.0/"
Codepen blocks content served via HTTP. Replace http
with https
.