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