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