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