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