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