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