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