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