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