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