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