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