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