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