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