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