How to use fonts with <link> tag
In this post, short examples are shown for how to use two popular fonts using the HTML< link> tag. Awesome fonts Robot  Laptop  The output is the following, where the boxes are where the fontawesome icons and its unicode version are printed. Robot Laptop Google fonts Using Google fonts! #h3_text {font-family: "Tangerine"; font-size: 35px;} Good Luck and Happy Practicing!

In this post, short examples are shown for how to use two popular fonts using the HTML< link> tag.
Awesome fonts
<!DOCTYPE>
rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free/css/all.min.css">
class="fas fa-robot"> Robot 
class="fas fa-laptop">Laptop 
id="output">
The output is the following, where the boxes are where the fontawesome icons and its unicode version are printed.
Robot
Laptop
Google fonts
<!DOCTYPE>
rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
id="h3_text">Using Google fonts!
#h3_text {font-family: "Tangerine"; font-size: 35px;}
Good Luck and Happy Practicing!