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