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