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