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