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