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