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