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