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