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