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