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