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