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