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