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