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