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