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