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