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