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