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