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