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