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