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