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