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