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