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