Use on the webTotal Use [ 3863 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/5f2ea0b33f6faa0751c65be9a23eceaa?family=Magical+Unicorn+Neue+Pro+Color+Sans+Color+SVG" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/5f2ea0b33f6faa0751c65be9a23eceaa?family=Magical+Unicorn+Neue+Pro+Color+Sans+Color+SVG); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Magical Unicorn Neue Pro Color Sans Color SVG";
    src: url("https://db.onlinewebfonts.com/t/5f2ea0b33f6faa0751c65be9a23eceaa.eot");
    src: url("https://db.onlinewebfonts.com/t/5f2ea0b33f6faa0751c65be9a23eceaa.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/5f2ea0b33f6faa0751c65be9a23eceaa.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/5f2ea0b33f6faa0751c65be9a23eceaa.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/5f2ea0b33f6faa0751c65be9a23eceaa.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/5f2ea0b33f6faa0751c65be9a23eceaa.svg#Magical Unicorn Neue Pro Color Sans Color SVG")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Magical Unicorn Neue Pro Color Sans Color SVG";