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