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