WebDev Beginner
  • Welcome to TechAcademy
  • Project
    • Project Introduction
    • Minimal Requirements
    • More Ideas
    • Curriculum
  • Video Plan
    • Youtube
  • Web Development Fundamentals
    • How to use this section?
    • 2. HTML
    • 3. CSS
    • 4. JavaScript
    • 5. Interaction HTML, CSS and JavaScript
  • Tools
    • IDE - Visual Studio Code
    • API
  • ADDITIONAL RESOURCES
    • Git & GitHub
    • JSON
    • Font Awesome
Powered by GitBook
On this page
  1. ADDITIONAL RESOURCES

Font Awesome

PreviousJSON

Font Awesome has a library of awesome icons, that are simply integrated in your project and can make quite the difference optically. Take a look to check out the icons. With a click on any of the icons you get shown the respective html code, that you can just copy and paste into your file.

There’s just one more quick thing to do before you can use them in your project, you have to register and add your personal script-tag, that you will get after the registration in the head section of your html file.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Document</title>
    <link rel="stylesheet" href="style.css" />
    <script
      src="https://kit.fontawesome.com/YOUR_CODE.js"
      crossorigin="anonymous"
    ></script>
  </head>
  <body>
    <!-- All the HTML code comes before the script tag -->
    <script src="script.js"></script>
  </body>
</html>
here
using this link