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