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