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