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