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