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