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