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