I’m trying to use a button as a link. I have the following code:
<form action="http://thenerdystudent.blogspot.co.uk/">
<input type="submit" value="My blog" />
</form>
It works well as it is, but I’d like to add an icon. I tried doing this:
<form action="http://thenerdystudent.blogspot.co.uk/">
<input class="fa-file-text-o" type="submit" value="My blog" />
</form>
But it didn’t work. I also tried doing this:
<form action="http://thenerdystudent.blogspot.co.uk/">
<input <i class="fa-file-text-o"></i> type="submit" value="My blog" />
</form>
But it looks like that didn’t work either. Any way that I can add them to an input button?
Thanks in advance!
You’ll want a <button>
instead of an <input>
. Like <button><i class="fa fa-icon"></i></button>
.
1 Like
I’ve done this:
<form action="http://thenerdystudent.blogspot.co.uk/">
<button type="submit"><i class="fa fa-icon"></i>My blog</button>
</form>
The button works, but still not getting the icon.
https://giacomolaw.github.io/
I chose fa-icon
as a placeholder (it’s not a real icon). Take a look at the list of icons here: http://fontawesome.io/icons/
1 Like
it is possible to add Font Awesome icons to input fields:
<input type=“submit” value=“ My blog” class=“fa fa-input”>
where f0f6 is the unicode for the fa-file-text-o icon
3 Likes
Try setting the <input>
's font-family
to FontAwesome
.