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