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