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