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