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