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