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