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