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