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