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