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