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