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