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