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