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