nbktechworld / full-stack-web-dev

6 stars 13 forks source link

Add a heading before the dog photo that says 📷Pictures #35

Open nbkhope opened 3 months ago

nbkhope commented 3 months ago

Instead of using an emoji, use an icon related to pictures from the Font Awesome library.

Add the following to the page <head>:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

You can put it before the linking of style.css file.

Then to add the icon use the <i> tag like so:

<i class="fa fa-car"></i>

Replace fa-car with the appropriate icon. Search the list of icons @ https://fontawesome.com/v4/icons/

rendertolearn commented 3 months ago

I'd like to help out with this issue.