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