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