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