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