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