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