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