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