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