Use on the webTotal Use [ 5185 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/58b4ca3e3d177a0824f432f14d36f36c?family=Magical+Unicorn+Neue+Pro+Line" 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/58b4ca3e3d177a0824f432f14d36f36c?family=Magical+Unicorn+Neue+Pro+Line);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Magical Unicorn Neue Pro Line";
src: url("https://db.onlinewebfonts.com/t/58b4ca3e3d177a0824f432f14d36f36c.eot");
src: url("https://db.onlinewebfonts.com/t/58b4ca3e3d177a0824f432f14d36f36c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/58b4ca3e3d177a0824f432f14d36f36c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/58b4ca3e3d177a0824f432f14d36f36c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/58b4ca3e3d177a0824f432f14d36f36c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/58b4ca3e3d177a0824f432f14d36f36c.svg#Magical Unicorn Neue Pro Line")format("svg");
}
2CSS rules to specify fonts
font-family: "Magical Unicorn Neue Pro Line";