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