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