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