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