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