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