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