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