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