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