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