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