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