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