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