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