From 03b7e458e1c2ad4d08e3b634d65ba6aa6b71e9ef Mon Sep 17 00:00:00 2001 From: patsul12 Date: Wed, 6 Jan 2016 19:18:01 -0800 Subject: [PATCH] updated the font awesome instructions to make them more clear. --- .../01-front-end-development-certification/bootstrap.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/seed/challenges/01-front-end-development-certification/bootstrap.json b/seed/challenges/01-front-end-development-certification/bootstrap.json index 287f90849b..508289633b 100644 --- a/seed/challenges/01-front-end-development-certification/bootstrap.json +++ b/seed/challenges/01-front-end-development-certification/bootstrap.json @@ -1135,6 +1135,9 @@ "title": "Add Font Awesome Icons to our Buttons", "description": [ "Font Awesome is a convenient library of icons. These icons are vector graphics, stored in the .svg file format. These icons are treated just like fonts. You can specify their size using pixels, and they will assume the font size of their parent HTML elements.", + "You can add Font Awesome to any app just by including it by adding the following code to the top of your HTML:", + "<link rel=\"stylesheet\" href=\"//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css\"/>", + "In this case, we've already added it for you to this page behind the scenes.", "The i element was originally used to make other elements italic, but is now commonly used for icons. You add the Font Awesome classes to the i element to turn it into an icon, for example:", "<i class=\"fa fa-info-circle\"></i>", "Use Font Awesome to add a thumbs-up icon to your like button by giving it an i element with the classes fa and fa-thumbs-up."