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