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