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