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