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