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