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