From 3841b5e4435c9844df98e6d300291575895c0699 Mon Sep 17 00:00:00 2001
From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com>
Date: Sun, 14 Oct 2018 21:51:29 +0530
Subject: [PATCH] Added solution to Add Font Awesome Icons to our Buttons
(#18413)
Add Font Awesome Icons to our Buttons
---
.../index.md | 21 ++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/client/src/pages/guide/english/certifications/front-end-libraries/bootstrap/add-font-awesome-icons-to-our-buttons/index.md b/client/src/pages/guide/english/certifications/front-end-libraries/bootstrap/add-font-awesome-icons-to-our-buttons/index.md
index a314f8ff28..8681f29bec 100644
--- a/client/src/pages/guide/english/certifications/front-end-libraries/bootstrap/add-font-awesome-icons-to-our-buttons/index.md
+++ b/client/src/pages/guide/english/certifications/front-end-libraries/bootstrap/add-font-awesome-icons-to-our-buttons/index.md
@@ -3,8 +3,23 @@ title: Add Font Awesome Icons to our Buttons
---
## Add Font Awesome Icons to our Buttons
-This is a stub. Help our community expand it.
+The challenge requires you to add a thumbs up icon from font awesome to the button with the text 'Like' in it
-This quick style guide will help ensure your pull request gets accepted.
+### Hint 1
-
+The ``` ``` tag is not self-closing.
+
+### Hint 2
+
+Use the classes ``` fa ``` and ```fa-thumbs-up```.
+
+### Solution
+
+Modify the button tag to the following:
+
+```html
+
+```