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