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