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