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