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