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