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