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