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