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