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