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