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