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