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