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