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