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