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