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