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