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