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